Solution to the problem that python.exe is not found in the directory after creating an environment with conda

Today, after using conda to create an environment, I used pycham to find that I found my python environment but I could not find the python.exe corresponding to the environment, as shown in the figure below.
Insert picture description here
The corresponding python.exe can be found in other environments.
Insert picture description here
Insert picture description here
I used

conda create -n pygcn

After creating this way, you can activate and run the corresponding package in the command line, but you can't find python.exe in the directory.
After thinking about it, you can use the following command to solve it. Python must be installed when creating the environment.

conda create -n pygcn python=3.6

Guess you like

Origin blog.csdn.net/qq_41459262/article/details/110631812