I am trying to update my python version in an anaconda3 virtual environment from 3.6 to 3.10.
Steps taken:
1. Download python 3.10 64bit from pyton.org
2. anaconda prompt: conda activate gis
(my venv)
3. anaconda prompt: (gis) C:\User\User>python -m venv --upgrade "C:/Users/User/anaconda3/envs/gis"
(path to my virtual environment)
4. check python version in venv: did not change, still 3.6.
note: command prompt displays Python was not found
when passed python --version
which is inconsistent with tutorials I have watched. I thought that because I was using anaconda, possibly I was to follow the same steps as the tutorials but in anaconda prompt. Maybe this was an incorrect assumption.
If I check the version in my base
environment, it is 3.10. This happened automatically upon downloading python 3.10.
Thanks for your help!