Changeset 9719 for trunk/anuga_core/tools/install_conda.sh
- Timestamp:
- Apr 2, 2015, 3:11:36 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/anuga_core/tools/install_conda.sh
r9717 r9719 11 11 12 12 13 [ -z "$PYTHON_VERSION" ] && PYTHON_VERSION="2.7" 13 PYTHON_VERSION=${PYTHON_VERSION:-"2.7"} 14 ANUGA_BITS=${ANUGA_BITS:-"64"} 14 15 15 16 … … 36 37 # Use the miniconda installer for faster download 37 38 # install of conda itself 38 wget http://repo.continuum.io/miniconda/Miniconda-3.8.3-Linux-x86_64.sh \ 39 -O miniconda.sh 39 if [[ "$ANUGA_BITS" == "64" ]]; then 40 wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh ; 41 fi 42 if [[ "$ANUGA_BITS" == "32" ]]; then 43 wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86.sh -O miniconda.sh ; 44 fi 40 45 chmod +x miniconda.sh && ./miniconda.sh -b 41 46
Note: See TracChangeset
for help on using the changeset viewer.