How to install custom package or library in code interpreter

I am looking for a solution to install custom package or library in python code interpreter.
I am trying to install yfinance package for doing some analysis but,
I am getting this error

that my current environment does not have internet access and thus cannot install external packages such as `yfinance`. Since I am unable to connect to the package index to download the library

Hi @vanshk605 !

It’s not possible to install external packages in their Python code interpreter - it’s a sandboxed environment with no internet access. You can pass it files to operate on, and these are accessed internally by disk mounts - again, no external internet access.

1 Like