Skip to content

Commit

Permalink
fix (#344): update windows install instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
lorenzocerrone authored Oct 6, 2024
1 parent 2554e8e commit 94575bf
Showing 1 changed file with 25 additions and 4 deletions.
29 changes: 25 additions & 4 deletions docs/chapters/getting_started/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,24 +36,45 @@ The easiest way to install PlantSeg is by using the [conda (Anaconda)](https://w

PlantSeg can be installed directly by executing in the terminal (or PowerShell on Windows). For `conda` users, the command is identical, just replace `mamba` with `conda`.

=== "Linux/Windows"
=== "Linux"

* NVIDIA GPU version, CUDA=12.x

```bash
mamba create -n plant-seg -c pytorch -c nvidia -c conda-forge pytorch pytorch-cuda=12.1 plant-seg --no-channel-priority
```

* NVIDIA GPU version, CUDA=11.x

```bash
mamba create -n plant-seg -c pytorch -c nvidia -c conda-forge pytorch pytorch-cuda=11.8 plant-seg --no-channel-priority
```

* CPU version

```bash
mamba create -n plant-seg -c pytorch -c nvidia -c conda-forge pytorch cpuonly plant-seg --no-channel-priority
```


=== "Windows"

* NVIDIA GPU version, CUDA=12.x

```bash
mamba create -n plant-seg -c pytorch -c nvidia -c conda-forge pytorch pytorch-cuda=12.1 pyqt plant-seg --no-channel-priority
mamba create -n plant-seg -c pytorch -c nvidia -c conda-forge pytorch pytorch-cuda=12.1 nifty=1.2.1=*_4 plant-seg --no-channel-priority
```

* NVIDIA GPU version, CUDA=11.x

```bash
mamba create -n plant-seg -c pytorch -c nvidia -c conda-forge pytorch pytorch-cuda=11.8 pyqt plant-seg --no-channel-priority
mamba create -n plant-seg -c pytorch -c nvidia -c conda-forge pytorch pytorch-cuda=11.8 nifty=1.2.1=*_4 plant-seg --no-channel-priority
```

* CPU version

```bash
mamba create -n plant-seg -c pytorch -c nvidia -c conda-forge pytorch cpuonly pyqt plant-seg --no-channel-priority
mamba create -n plant-seg -c pytorch -c nvidia -c conda-forge pytorch cpuonly nifty=1.2.1=*_4 plant-seg --no-channel-priority
```

=== "macOS"
Expand Down

0 comments on commit 94575bf

Please sign in to comment.