Packages from Conda env not found in Jupyer Notebook

Here are two possible solutions:

You can register a new kernel based on your imagescraper environment. The kernel will start from the imagescraper environment and thus sees all its packages.

source activate imagescraper
conda install ipykernel
ipython kernel install --name imagescraper

This will add a new kernel named imagescraper to your jupyter dashboard.


Another solution is to install jupyter notebook into the imagescraper environment and start jupyter from the enviroment. This requires activating imagescraper whenever you start jupyter notebook.

source activate imagescraper
conda install notebook
jupyter notebook

Leave a Comment