Skip to content

Commit

Permalink
Merge pull request #108 from ami-iit/traversaro-patch-2
Browse files Browse the repository at this point in the history
Update installation instruction when installing conda packages
  • Loading branch information
Giulero authored Nov 21, 2024
2 parents 92058fc + 1cbf7a5 commit 8cd3cb1
Showing 1 changed file with 23 additions and 4 deletions.
27 changes: 23 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,11 +111,30 @@ pip install .[selected-interface]

#### Installation from conda-forge package

```bash
mamba create -n adamenv -c conda-forge adam-robotics
```

If you want to use `jax` or `pytorch`, just install the corresponding package as well.
- Install **CasADi** interface:

```bash
mamba create -n adamenv -c conda-forge adam-robotics-casadi
```

- Install **Jax** interface (warning: not available on Windows):

```bash
mamba create -n adamenv -c conda-forge adam-robotics-jax
```

- Install **PyTorch** interface (warning: not available on Windows):

```bash
mamba create -n adamenv -c conda-forge adam-robotics-pytorch
```

- Install **ALL** interfaces (warning: not available on Windows):

```bash
mamba create -n adamenv -c conda-forge adam-robotics-all
```

> [!NOTE]
> Check also the conda JAX installation guide [here](https://jax.readthedocs.io/en/latest/installation.html#conda-community-supported)
Expand Down

0 comments on commit 8cd3cb1

Please sign in to comment.