Skip to content

Instantly share code, notes, and snippets.

@HarshitRuwali
Created June 14, 2020 13:11
Show Gist options
  • Save HarshitRuwali/cc8e9bd6792061ff36055a6122b28e0e to your computer and use it in GitHub Desktop.
Save HarshitRuwali/cc8e9bd6792061ff36055a6122b28e0e to your computer and use it in GitHub Desktop.
Some useful terminal commands for Anaconda users.
To activate the Anaconda environment.
PATH=$PATH:$HOME/anaconda/bin
For the base:
source ~/.bash_profile
For the loacl environment we created:
conda activate <name>
Ex:
conda activate python36
uploading the environment to anaconda cloud
conda env export -n my-environment -f my-environment.yml
anaconda upload my-environment.yml
uploading anaconda notebooks to the anaconda cloud
anaconda upload my-notebook.ipynb
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment