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 conda binary packages section to remove references to robotology channel and document new ergocub-models package #274

Merged
merged 2 commits into from
Nov 20, 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
11 changes: 9 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,20 @@ Alternatively, if `YARP` has been installed using the [robotology-superbuild](ht

### Use conda binary packages

This repository is packaged as `ergocub-software` in the `robotology` conda channel, see https://anaconda.org/robotology/ergocub-software .
This repository is packaged as `ergocub-software` in the `conda-forge` conda channel, see https://anaconda.org/conda-forge/ergocub-software and https://github.com/conda-forge/ergocub-software-feedstock .

To create an environment with it, just add it during the environment creation as any other conda package, for example:
~~~
conda create -n ergocubenv -c conda-forge -c robotology ergocub-software
conda create -n ergocubenv -c conda-forge ergocub-software
~~~

If you only need to use the ergoCub URDF models and you do not want to install the full dependencies of the `ergocub-software` (that include YARP and OpenCV), you can also install the lightweight dependency free package `ergocub-models`:
~~~
conda create -n ergocubenv -c conda-forge ergocub-models
~~~

The `ergocub-software` package depends on `ergocub-models`, so if you need both you can just install `ergocub-software`.

## Run Whole-body-dynamics
Currently whole-body-dynamics does not run along with `ergoCubGazeboV1`. To start it please run the following command in a console once `yarpserver` and
the robot has been placed in `gazebo`
Expand Down
Loading