Environments#
Viewing your environment#
You can see a list of your uploaded environments by clicking View at the top of the page and selecting Environments from the dropdown menu.
Downloading your environment#
Anyone with network access can download and install your environment directly from Anaconda.org or through a command line interface (CLI).
Downloading your environment on Anaconda.org#
Go to
https://anaconda.org/<USERNAME>/environments
, where<USERNAME>
is your username.Select the environment you want to download.
Navigate to the Files tab, then click the file name in the Name column to download it.
Downloading your environment in the CLI#
Open the terminal (Anaconda Prompt for Windows users) and run the following command:
# Replace <MY_ENVIRONMENT> with the name of your environment
conda env create user/<MY_ENVIRONMENT>
source activate <MY_ENVIRONMENT>