Anaconda is not creating full environment

前端 未结 2 1072
不知归路
不知归路 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:27

    You have to use this to get all of the Anaconda default packages:

    conda create --name my_env anaconda
    

    Otherwise, it doesn't install everything.

    0 讨论(0)
  • 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
    
    0 讨论(0)
提交回复
热议问题