Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

conda creating environments. Parameter choice

The documentation for conda has the following example:

$ conda create -n py33 python=3.3 anaconda

My question is, why do we specify anaconda as an argument here? (what other options are available and what are the differences)?

Is anaconda here a meta-package? If so, what other metapackages are available?

like image 364
Amelio Vazquez-Reina Avatar asked Aug 20 '26 09:08

Amelio Vazquez-Reina


1 Answers

According to the help, anaconda in that example installs the package spec anaconda.

like image 126
ratmatz Avatar answered Aug 22 '26 22:08

ratmatz