How can I add shared library in anaconda?

831 views Asked by At

When I use python command, I can import library (boost.python) from code if .so files are stored in the same folder as .py script. How I can do this with anaconda and Jupyter Notebook?

1

There are 1 answers

1
Moises de Paulo Dias On

Anaconda has a shell interface called “Anaconda Prompt”

inside the prompt, just use the following command:

conda install <yourPackageName>

and it will be available for your jupyter notebook

https://francescolelli.info/python/install-anaconda-and-import-libraries-into-the-ide/