Skip to content

Commit

Permalink
MAINT: Update install guide; New copyright year (#284)
Browse files Browse the repository at this point in the history
Fixes #279
Fixes #283
  • Loading branch information
thermokarst authored and ebolyen committed Feb 14, 2018
1 parent c928f36 commit 31c1662
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
2 changes: 1 addition & 1 deletion source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@

# General information about the project.
project = 'QIIME 2'
copyright = '2016-2017, QIIME 2 development team'
copyright = '2016-2018, QIIME 2 development team'
author = 'QIIME 2 development team'

# The version info for the project you're documenting, acts as replacement for
Expand Down
11 changes: 9 additions & 2 deletions source/install/native.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ After installing Miniconda and opening a new terminal, make sure you're running
:no-exec:

conda update conda
conda install wget

Install QIIME 2 within a ``conda`` environment
----------------------------------------------
Expand All @@ -38,10 +39,16 @@ Once you have Miniconda installed, create a ``conda`` environment and install th
</p>
</div>
<div id="macOS" class="tab-pane fade">
<pre>conda create -n qiime2-2018.2 --file https://data.qiime2.org/distro/core/qiime2-2018.2-conda-osx-64.txt</pre>
<pre>wget https://data.qiime2.org/distro/core/qiime2-2018.2-py35-osx-conda.yml
conda env create -n qiime2-2018.2 --file qiime2-2018.2-py35-osx-conda.yml
# OPTIONAL CLEANUP
rm qiime2-2018.2-py35-osx-conda.yml</pre>
</div>
<div id="linux" class="tab-pane fade">
<pre>conda create -n qiime2-2018.2 --file https://data.qiime2.org/distro/core/qiime2-2018.2-conda-linux-64.txt</pre>
<pre>wget https://data.qiime2.org/distro/core/qiime2-2018.2-py35-linux-conda.yml
conda env create -n qiime2-2018.2 --file qiime2-2018.2-py35-linux-conda.yml
# OPTIONAL CLEANUP
rm qiime2-2018.2-py35-linux-conda.yml</pre>
</div>
</div>
</div>
Expand Down

0 comments on commit 31c1662

Please sign in to comment.