Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
programming_languages:python:conda [2018/09/23 12:25] – created phreazer | programming_languages:python:conda [2018/09/23 12:34] (current) – [Important commands] phreazer | ||
---|---|---|---|
Line 14: | Line 14: | ||
export LD_LIBRARY_PATH=/ | export LD_LIBRARY_PATH=/ | ||
conda activate | conda activate | ||
+ | </ | ||
+ | |||
+ | ===== Important commands ===== | ||
+ | |||
+ | < | ||
+ | # Environment commands, see https:// | ||
+ | # create new environment | ||
+ | conda create -n myenv python=3.6 | ||
+ | # activate environment | ||
+ | source activate myenv | ||
+ | # show conda envs | ||
+ | conda env list | ||
+ | # show packages in current env | ||
+ | conda list | ||
+ | # export environment file | ||
+ | conda env export > environment.yml | ||
+ | # create new environment based on exported yml | ||
+ | conda env create -f environment.yml | ||
+ | </ | ||
+ | < | ||
+ | # Package commands, see https:// | ||
+ | # install package | ||
+ | conda install scipy=0.15.0 curl=7.26.0 -n py34_env | ||
</ | </ | ||