Skip to content
This repository has been archived by the owner on Sep 12, 2024. It is now read-only.

Commit

Permalink
fix/add installation instructions (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
alessandrofelder authored Dec 5, 2023
1 parent 0d8cd30 commit 122bad5
Showing 1 changed file with 27 additions and 3 deletions.
30 changes: 27 additions & 3 deletions slides/installation.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,32 @@
```bash
conda create --name brainglobe python=3.10 -y
conda activate brainglobe
conda install napari -c conda-forge
conda install -c conda-forge napari pyqt
```

Double-check that running
```bash
napari
```
opens a new `napari` window.

. . .

::: {.callout-tip}
## More details

More details about using conda are available at [brainglobe.info](https://brainglobe.info/documentation/setting-up/conda.html){preview-link="true"}
:::

## Command line installation (alternative) {.smaller}

. . .

**Create a new conda environment and install napari with pip**
```bash
conda create --name brainglobe python=3.10 -y
conda activate brainglobe
pip install "napari[pyqt5]"
```

Double-check that running
Expand Down Expand Up @@ -36,5 +61,4 @@ conda install hdf5
Install all brainglobe tools with
```{.bash}
pip install brainglobe
```

```

0 comments on commit 122bad5

Please sign in to comment.