Ignore:
Timestamp:
Apr 2, 2015, 3:11:36 PM (10 years ago)
Author:
steve
Message:

Bring svn repo up to date with git repo

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/anuga_core/tools/install_conda.sh

    r9717 r9719  
    1111
    1212
    13 [ -z "$PYTHON_VERSION" ] && PYTHON_VERSION="2.7"
     13PYTHON_VERSION=${PYTHON_VERSION:-"2.7"}
     14ANUGA_BITS=${ANUGA_BITS:-"64"}
    1415
    1516
     
    3637# Use the miniconda installer for faster download
    3738# install of conda itself
    38 wget http://repo.continuum.io/miniconda/Miniconda-3.8.3-Linux-x86_64.sh \
    39     -O miniconda.sh
     39if [[ "$ANUGA_BITS" == "64" ]]; then
     40    wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh ;
     41fi
     42if [[ "$ANUGA_BITS" == "32" ]]; then
     43    wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86.sh -O miniconda.sh ;
     44fi
    4045chmod +x miniconda.sh && ./miniconda.sh -b
    4146
Note: See TracChangeset for help on using the changeset viewer.