I have python 3.7 and anaconda3 installed in Win10, and conda 4.7.12, conda is on my PATH. Had installed jupyter using pip (pip 19.3.1). I can see all packages in the the anaconda directory. Don't have any old python2 or anaconda2 nor any virtual env.
I have jupyter notebook - but for just about every package jupyter is complaining - ModuleNotFoundError
. I did pip install for pandas, numpy etc in jupyter - it worked. But juypter complains about the next package, on and on. Do I have to do a pip install inside jupyter for every package or there is better/easier way.
(I know its never easy)
jupyter notebook
from command line. How do I activate conda env. I tried running jupyter with GUI for Annaconda. The problem went away - so if that is the easy way around this - I am fine with that. - Sam-Tconda create --name myenv
(no need to specify any packages). And activate it withconda activate myenv
and then runjupyter notebook
from same cmd shell ? But nonetheless you are suggesting just use the navigator. - Sam-Tconda create --name juypterenv
conda activate jupyterenv
jupyter notebook
- Sam-T