I installed Anaconda on my Windows 10 machine. The conda version is 4.9.0. The only non-base environment I have is py39 for Python 3.9
I followed this Stack Overflow answer in an attempt to keep py39 activated between sessions of the conda command window. I followed all three methods:
(i) conda config --set auto_activate_base false
(ii) Confirmed that c:\Users\User.Name\.condarc contains auto_activate_base: false
(iii) Created a user-level environment variable CONDA_AUTO_ACTIVATE_BASE=false
in Windows 10 (not Bash/Linux)
After each one of these measures, I started the conda prompt window, activated the py39 environment, exitted, restarted the conda prompt window, and issued conda env list
to confirm that the active environment had reverted back to the base environment (undesirably):
(base) C:\Users\User.Name>conda env list
# conda environments:
#
base * C:\ProgramData\Anaconda3
py39 C:\Users\User.Name\.conda\envs\py39
What am I doing wrong in trying to keep the py39 environment activated?