Working with environmentsΒΆ

To share an environment on Anaconda Cloud:

  1. Save a conda environment and upload it to Cloud:

    conda env export -n my-environment
    conda env upload my-environment
    

    NOTE: Replace my-environment with the actual name of your environment.

  2. You can see a list of your uploaded environments at:

    http://envs.anaconda.org/<USERNAME>
    

    NOTE: Replace <USERNAME> with your username.

  3. Anyone can download and install your environment from Cloud:

    conda env create user/my-environment
    source activate my-environment
    

    NOTE: Replace my-environment with the actual name of your environment.