Whether the new Anaconda environment comes with the Anaconda basic package

problem description

with the Anaconda3 platform installed, generate a new environment in the following two ways. Is the difference between the basic environment with Anaconda?

related codes

conda create --name=AAA python=3 anaconda anaconda?
conda create --name=BBB python=3.6 Python?

Thank you

Nov.27,2021

method 2 may not contain only the python base package, but only specify the version of python in the current environment.

if you need to install the specified package, you can use a .txt document to declare separately the address of the Anaconda source package you want to download, such as saving it in "environment.txt", and then install it using the following command line:

  Conda create how to create a pure Python 3.6 environment  this answer. The explanation is very clear. 

Menu