Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update installation instruction when installing conda packages #108

Merged
merged 1 commit into from
Nov 21, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading