I have got two anaconda environments. The base one and my testing environment called testenv
. This environment works without an issue for example with the PyCharm IDE.
When starting a jupyter server straight from the pictured directory by issuing jupyter notebook
my scripts/notebooks complains about missing packages.
This tells me it is using base
environment instead of my testenv
environment. But as the screenshot show, its not the one thats activated.
So the question is: How can I set the virtual environment used by jupyter?
Used versions:
- Windows 10 Pro x64
- Jupyter Notebook 5.7.4
- Python 3.7.1
- Conda 4.5.12
[Edit] It turned out that jupyter was not even installed in my environment. I was assuming to be able to use the installation coming from base
. After installing jupyter within my environment everything was working as expected.