Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Depend on conda-forge channel by default. #1388

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ Step 2: Setup Bioconda
After installing Miniconda, you can use the ``conda`` command to setup bioconda with::

conda config --add channels r
conda config --add channels conda-forge
conda config --add channels bioconda

The ``r`` channel is added to satisfy the `R language <https://www.r-project.org/>`_
Expand Down
1 change: 1 addition & 0 deletions scripts/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ RUN conda install -y --file requirements.txt
RUN conda index /anaconda/conda-bld/linux-64 /anaconda/conda-bld/osx-64
RUN conda config --add channels bioconda
RUN conda config --add channels r
RUN conda config --add channels conda-forge
RUN conda config --add channels file://anaconda/conda-bld
RUN conda install -y toposort

Expand Down
1 change: 1 addition & 0 deletions scripts/travis-setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ else
# setup bioconda channel
conda config --add channels bioconda
conda config --add channels r
conda config --add channels conda-forge
conda config --add channels file://anaconda/conda-bld

conda install -y toposort
Expand Down