We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 631c032 commit 75c0e8dCopy full SHA for 75c0e8d
.travis.yml
@@ -7,7 +7,15 @@ python:
7
- "3.6-dev" # 3.6 development branch
8
9
install:
10
- - pip install conda
+ # 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
19
- conda env create -f picrust2-env.yaml
20
- source activate picrust2
21
- pip install --editable .
0 commit comments