Skip to content

Commit

Permalink
Merge pull request #275 from DendrouLab/installation_troubleshooting_…
Browse files Browse the repository at this point in the history
…macos

Extended installation instructions for macOS
  • Loading branch information
bio-la authored Apr 30, 2024
2 parents 7f043d7 + 1f1f06e commit 85993f6
Showing 1 changed file with 16 additions and 3 deletions.
19 changes: 16 additions & 3 deletions docs/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -199,13 +199,26 @@ mamba install python=3.10 r-base=4.3.0
5. Install R dependencies and panpipes itself:

```bash
conda install -c conda-forge r-tidyverse r-optparse r-ggforce r-ggraph r-xtable r-hdf5r r-clustree r-cowplot
pip install panpipes
mamba install -c conda-forge r-tidyverse r-optparse r-ggforce r-ggraph r-xtable r-hdf5r r-clustree r-cowplot
pip install panpipes # or install the nightly version by cloning the repository as described above
```

6. Ensure the `time` package is installed
If the `time` package is not already installed, you can install it using:

```bash
mamba install time
```
You're all set to run `panpipes` on your local machine.
If you want to configure it on a HPC server, follow the next instructions.

>Note: If you encounter an issue with the `jax` dependency when running panpipes, try reinstalling it from source:
>```bash
>pip uninstall jax jaxlib
>mamba install -c conda-forge jaxlib
>mamba install -c conda-forge jax
>```
If you want to configure it on an HPC server, follow the instructions in the following section.
## Pipeline configuration for HPC clusters
Expand Down

0 comments on commit 85993f6

Please sign in to comment.