Anaconda is not creating full environment

前端 未结 2 1074
不知归路
不知归路 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.

提交回复
热议问题