Shorter Miniconda install instructions: Difference between revisions
From CSDMS
(Created page with "<noinclude> ==Install Python== </noinclude> Install a Python distribution to be used locally by WMT. We like to use Miniconda. cd $install_dir curl https://repo.continuum....") |
m (Update conda first) |
||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
<noinclude> | <noinclude> | ||
== | <noinclude> | ||
==Brief Miniconda install instructions== | |||
</noinclude> | </noinclude> | ||
Line 13: | Line 14: | ||
If working with an existing Miniconda install, be sure to update everything before continuing: | If working with an existing Miniconda install, be sure to update everything before continuing: | ||
conda update conda | |||
conda update --all | conda update --all |
Latest revision as of 18:54, 20 March 2018
Brief Miniconda install instructions
Install a Python distribution to be used locally by WMT. We like to use Miniconda.
cd $install_dir curl https://repo.continuum.io/miniconda/Miniconda2-latest-Linux-x86_64.sh -o miniconda.sh bash ./miniconda.sh -f -b -p $(pwd)/conda export PATH=$(pwd)/conda/bin:$PATH
If working with an existing Miniconda install, be sure to update everything before continuing:
conda update conda conda update --all