2014-11-07 09:53:38 +08:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
wget http://repo.continuum.io/miniconda/Miniconda3-3.7.3-Linux-x86_64.sh -O miniconda.sh
|
|
|
|
bash miniconda.sh -b -p $HOME/miniconda
|
|
|
|
hash -r
|
|
|
|
conda config --set always_yes yes --set changeps1 no
|
|
|
|
conda update -q conda
|
|
|
|
conda info -a
|
2015-05-12 19:56:29 +08:00
|
|
|
conda install conda-build jinja2
|
2015-05-11 15:33:30 +08:00
|
|
|
conda create -q -n py34 python=$TRAVIS_PYTHON_VERSION
|
2015-03-04 00:23:34 +08:00
|
|
|
conda config --add channels fallen
|