File tree Expand file tree Collapse file tree 1 file changed +13
-11
lines changed Expand file tree Collapse file tree 1 file changed +13
-11
lines changed Original file line number Diff line number Diff line change @@ -3,20 +3,22 @@ python:
33 - 3.6
44
55before_install :
6- - wget http ://repo.continuum.io/miniconda/Miniconda -latest-Linux-x86_64.sh -O miniconda.sh
6+ - wget https ://repo.continuum.io/miniconda/Miniconda3 -latest-Linux-x86_64.sh -O miniconda.sh
77 - chmod +x miniconda.sh
8- - " ./miniconda.sh -b"
9- - export PATH=/home/travis/miniconda2/bin:$PATH
10- - conda update --yes conda
11- - sudo rm -rf /dev/shm
12- - sudo ln -s /run/shm /dev/shm
8+ - bash miniconda.sh -b -p $HOME/miniconda
9+ - export PATH="$HOME/miniconda/bin:$PATH"
10+ - hash -r
11+ - conda config --set always_yes yes --set changeps1 no
12+ - conda update -q conda
13+ # Useful for debugging any issues with conda
14+ - conda info -a
1315
1416install :
15- - " pip install scipy"
16- - " pip install numpy"
17- - " pip install matplotlib"
18- - " pip install pandas"
19- - " pip install cvxpy"
17+ - pip install scipy
18+ - pip install numpy
19+ - pip install matplotlib
20+ - pip install pandas
21+ - pip install cvxpy
2022 - conda install -y -c cvxgrp cvxpy
2123 - conda install -y -c anaconda cvxopt
2224
You can’t perform that action at this time.
0 commit comments