I created a virtual environment by command
conda create --name myenv python=3.9
The package
python pkgs/main/win-64::python-3.9.7-h6244533_1
was installed.
But when I run either IPython or Python kernel of Jupyter Notebook I can see that the old version of Python is still in use
C:\Users\User\python-virtual-environments>ipython
Python 3.8.5 (default, Sep 3 2020, 21:29:08)``
I run
python-virtual-environments>pip install jupyter
But it also was without success.
How can I make it to use the version 3.9?