File tree 1 file changed +13
-11
lines changed
1 file changed +13
-11
lines changed Original file line number Diff line number Diff line change @@ -3,20 +3,22 @@ python:
3
3
- 3.6
4
4
5
5
before_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
7
7
- 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
13
15
14
16
install :
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
20
22
- conda install -y -c cvxgrp cvxpy
21
23
- conda install -y -c anaconda cvxopt
22
24
You can’t perform that action at this time.
0 commit comments