Anaconda is not creating full environment

前端 未结 2 1071
不知归路
不知归路 2021-01-12 00:00

I\'m trying to create a conda environment using git-bash and win10. I ran:

$ conda create --name my_env

The result looks like the

2条回答
  •  清酒与你
    2021-01-12 00:43

    To create the environment with the Python executable, use one of:

    conda create --name my_env python  # latest available python version
    conda create --name my_env python=3.7  # specific python version
    

    Without specifying packages, i.e. python as above, conda just doesn't install anything at all in my_env environment.


    You can alternatively install the Python interpreter after environment creation. For a list of installable Python versions, run conda search "^python$".

    conda install python  # latest available python version
    conda install python=3.7  # specific python version
    

提交回复
热议问题