Skip to content

Instantly share code, notes, and snippets.

@Aneesh540
Last active July 18, 2017 15:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Aneesh540/5e534e8e675100fc98f6711606fdad77 to your computer and use it in GitHub Desktop.
Save Aneesh540/5e534e8e675100fc98f6711606fdad77 to your computer and use it in GitHub Desktop.
Anaconda and Conda command line interface

#For Ubuntu 16.04

Creating a new environment

$ conda create -n aneesh python=3
$ source activate aneesh
$ source deactivate

after activating environment

(aneesh) ldrago@aneesh:~$ conda list

for creating a virtualenv gistify with conda having numpy scipy and python3.6

$ conda create -n gistify python=3.6 numpy scipy

for checking list of all conda environment

$ conda env list

for removing a environment name==gistify

$ conda env remove -n gistify
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment