Skip to content

Commit 75c0e8d

Browse files
committed
Fixed how conda installed in travis-ci
1 parent 631c032 commit 75c0e8d

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.travis.yml

+9-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,15 @@ python:
77
- "3.6-dev" # 3.6 development branch
88

99
install:
10-
- pip install conda
10+
# Install miniconda
11+
- wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
12+
- bash miniconda.sh -b -p $HOME/miniconda
13+
- export PATH="$HOME/miniconda/bin:$PATH"
14+
- hash -r
15+
- conda config --set always_yes yes --set changeps1 no
16+
- conda update -q conda
17+
18+
# Install PICRUSt2
1119
- conda env create -f picrust2-env.yaml
1220
- source activate picrust2
1321
- pip install --editable .

0 commit comments

Comments
 (0)