So I am trying to use Ipython notebook with Anaconda (Windows10). I got into anaconda cmd and create a new environment TryThis. I install Seaborn in this environment. And then I run Ipython command in the conda cmd.
conda create --name TryThis python=2
activate TryThis
conda install seaborn
ipython
When I run
import seaborn as sns
in this it executes allright.
However if I exit this and then run
ipython notebook
in the conda cmd and go on to do the import in an ipython notebook in browser, it throws error
---------------------------------------------------------------------------
ImportError Traceback (most recent call last)
<ipython-input-1-ed9806ce3570> in <module>()
----> 1 import seaborn as sns
ImportError: No module named seaborn
I do not understand what is going wrong. If Seaborn is in this anaconda environment and I initiated Ipython notebook in this environment and Ipython in console can recognize it, why doesn't the notebook ?
What I might be doing is something blatantly incorrect, but I just started out with using anaconda !
conda install ipython? You cannot use your default one - it will not see the packages installed in your environment. - cel