Skip to main content

Jupyter Notebooks and Conda

After creating a environment with conda and installing packages, the jupyter notebook environment may not see them. The method below adds a new kernel based on the later environment and allow to benefit from conda:

conda activate my-env
conda  create -n my-env pip setuptools ipykernel python=3.5
python -m ipykernel install --user --name my-env --display-name "Python (my-env)"

Comments

Comments powered by Disqus