I create a Conda environment (23OCT20A) and attach a Jupyter notebook to it. From the command line I install packages but Jupyter can't see them. It appears the Jupyter Notebook uses a different Python executable than the Conda command line environment.
How do I fix this?
From the command line the Conda environment looks to be using the correct Python: ('C:\Users\myUser\Miniconda3\envs\23OCT20A\python.exe')
From within Jupyter the Conda environment is different: ('C:\Users\myUser\Miniconda3\python.exe')
Here is how I check the Python version in each environment:
import sys
print (sys.executable)