I have made two new environments using conda
and installed different dependencies in both environment. After activating one environment and opening jupyter notebook in that environment , I tried to import dependencies that I have installed for that environment but it showed me an error that this module is not present, after this I installed a jupyter notebook separately in that environment using :
pip install jupyter notebook
and error removed this time in that jupyter notebook. Also when I imported matplotlib
in base environment it was imported but in new env
it was showing no module error. Does it mean that whenever I have more than one environment , I have to install new jupyter notebook in every environment ?
I don't want to use other environment dependencies in current environment but all i am asking is why i am unable to import package in jupyter notebook even though i have installed them in this environment.
Please help me out for this issue. I have wasted my 10 to 15 days understanding this but I didn't find anything.