I do conda create --name env
then conda activate env
.
My prompt now has (env)
at the beginning of it. Then I try running python
at the prompt and it returns
'python' is not recognized as an internal or external command, operable program or batch file.
The documentation explicitly states
This environment uses the same version of Python that you are currently using because you did not specify a version.
However, if I do conda create --name env python=3.8
, my environment correctly runs python 3.8. It seems like if I don't specify a version, my environment is completely empty (which it is when I look in the directory). But the documentation says that it should have the version of python from the base. What am I doing wrong?
I'm using an anaconda prompt in Windows 10.