Skip to content

Commit

Permalink
add apple silicon install (#25)
Browse files Browse the repository at this point in the history
* move author citation

* add instructions for dev environment setup on apple silicon
  • Loading branch information
gregcaporaso authored Mar 4, 2024
1 parent 505e886 commit 4193287
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions book/plugins/how-to-guides/set-up-development-environment.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,15 @@ conda env create -n q2dev-tiny --file qiime2-tiny-ubuntu-latest-conda.yml
rm qiime2-tiny-ubuntu-latest-conda.yml
```
````
````{tab-item} macOS (Apple Silicon)
```bash
wget https://raw.githubusercontent.com/qiime2/distributions/dev/latest/passed/qiime2-tiny-macos-latest-conda.yml
CONDA_SUBDIR=osx-64 conda env create -n q2dev-tiny --file qiime2-tiny-macos-latest-conda.yml
rm qiime2-tiny-macos-latest-conda.yml
conda config --env --set subdir osx-64
```
````
`````

## Activate the ``conda`` environment
Expand Down Expand Up @@ -138,6 +147,15 @@ conda env create -n q2dev-amplicon --file qiime2-amplicon-ubuntu-latest-conda.ym
rm qiime2-amplicon-ubuntu-latest-conda.yml
```
````
````{tab-item} macOS (Apple Silicon)
```bash
wget https://raw.githubusercontent.com/qiime2/distributions/dev/latest/passed/qiime2-amplicon-macos-latest-conda.yml
CONDA_SUBDIR=osx-64 conda env create -n q2dev-amplicon --file qiime2-amplicon-macos-latest-conda.yml
rm qiime2-amplicon-macos-latest-conda.yml
conda config --env --set subdir osx-64
```
````
`````

### Shotgun distribution
Expand All @@ -158,5 +176,14 @@ conda env create -n q2dev-shotgun --file qiime2-shotgun-ubuntu-latest-conda.yml
rm qiime2-shotgun-ubuntu-latest-conda.yml
```
````
````{tab-item} macOS (Apple Silicon)
```bash
wget https://raw.githubusercontent.com/qiime2/distributions/dev/latest/passed/qiime2-shotgun-macos-latest-conda.yml
CONDA_SUBDIR=osx-64 conda env create -n q2dev-shotgun --file qiime2-shotgun-macos-latest-conda.yml
rm qiime2-shotgun-macos-latest-conda.yml
conda config --env --set subdir osx-64
```
````
`````

0 comments on commit 4193287

Please sign in to comment.