Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
valentinsiryk committed Dec 30, 2016
1 parent e24db71 commit cc8f0a6
Showing 1 changed file with 22 additions and 8 deletions.
30 changes: 22 additions & 8 deletions Anaconda/anaconda.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ Anaconda instructions

http://conda.pydata.org/docs/_downloads/conda-cheatsheet.pdf

`Link text <http://conda.pydata.org/docs/_downloads/conda-cheatsheet.pdf>`

Update::

Expand All @@ -17,7 +16,7 @@ Display a list of installed packages and their versions::
conda list


Create a new environment named /envs/snowflakes with the program Biopython::
Create a new environment named ``/envs/snowflakes`` with the program ``Biopython``::

conda create --name snowflakes biopython
conda create --name bunnies python=3 astroid babel
Expand All @@ -29,21 +28,36 @@ To activate this environment, use::


To deactivate this environment, use::

source deactivate


::
See a list of environments::

conda info --envs

conda info --envs # see a list of environments

Make an exact copy of an environment::

conda create --name <dest_name> --clone <source_name> # Make an exact copy of an environment
conda create --name <dest_name> --clone <source_name>

Remove environment::

conda remove --name flowers --all # remove environment
conda remove --name flowers --all
<pkg_name> # remove pkg from flowers


Remove pkg from env::

conda remove --name <env_name> <pkg_name>


Search packages contain 'text'::

conda search <text>

--full-name search packages with full name 'python'

conda search python # search packages contain 'python'
--full-name python # search packages with full name 'python'

conda install <pkg_name> # install pkg to current env
--name <env_name> <pkg_name> # install pkg to 'env_name' environment
Expand Down

0 comments on commit cc8f0a6

Please sign in to comment.