Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Anaconda is not creating full environment

enter image description here

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 screenshot above.

Looking at other environments , I can see they normally look like:

enter image description here

How can I fix this?

like image 492
user1592380 Avatar asked Mar 31 '17 16:03

user1592380


People also ask

How long does it take to create a conda environment?

This takes about 15 minutes to complete and works for ESMValTool v2.


2 Answers

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
like image 62
pkowalczyk Avatar answered Nov 02 '22 23:11

pkowalczyk


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.

like image 21
gaw89 Avatar answered Nov 03 '22 00:11

gaw89