My question is opposite with this one : How to start an ipython shell(not notebook) within a conda or virtualenv
I have Anaconda installed, and I created an environment called myenv
.
Then:
source activate myenv
conda install package_x
ipython notebook
And I opened the browser followed the given link, and start a new notebook. It turns out that the notebook kernel is not myenv
- it does not have the packages that I installed in myenv
.
How to let start an ipython notebook with the kernel belongs to myenv
?
Thanks