Ubuntu 21.10, have created a new conda env, named "curpy", which includes python 3.1.0, keras, talos, etc, installed ipykernel, and when I open a jupyter notebook I can change to this kernel. Then I start getting 'no module' errors.
When I run this code in a cell, using an older environment which works but does provide some packages, it appears to work fine.
import sys
sys.path
sys.executable
I get the correct result, points to an older version of python etc.
'/home/name/miniconda3/envs/p3.7_keras_talos_env/bin/python'
However when I switch the kernel to the new one and run the same code it gives me the wrong (system default) version of python:
'/home/name/miniconda3/bin/python'
What I am expecting is
'/home/name/miniconda3/envs/curpy/bin/python'
What can I do to get jupyter to import/use the environment correctly. Thx. J