Unverified Commit bf28d974 authored by samibouziri's avatar samibouziri Committed by GitHub

Fixes no matching distribution found for rsl-rl (unavailable) (#1808)

# Description
Fixing the `No matching distribution found for rsl-rl (unavailable)`
Error
Fixes #1807

<!-- As a practice, it is recommended to open an issue to have
discussions on the proposed pull request.
This makes it easier for the community to keep track of what is being
developed or added, and if a given feature
is demanded by more than one party. -->

## Type of change

- Bug fix (non-breaking change which fixes an issue)

## Checklist

- [x] I have made corresponding changes to the documentation (not
needed)
- [x] My changes generate no new warnings
- [ ] I have added my name to the `CONTRIBUTORS.md` or my name already
exists there

---------
Signed-off-by: 's avatarsamibouziri <79418773+samibouziri@users.noreply.github.com>
Signed-off-by: 's avatarKelly Guo <kellyguo123@hotmail.com>
Co-authored-by: 's avatarKelly Guo <kellyguo123@hotmail.com>
parent 2cf28672
...@@ -71,7 +71,7 @@ To learn about how to set up your own extension project on top of Isaac Lab, vis ...@@ -71,7 +71,7 @@ To learn about how to set up your own extension project on top of Isaac Lab, vis
.. code-block:: bash .. code-block:: bash
pip install rsl-rl@git+https://github.com/leggedrobotics/rsl_rl.git pip install rsl-rl-lib@git+https://github.com/leggedrobotics/rsl_rl.git
- Before installing Isaac Lab, ensure the latest pip version is installed. To update pip, run - Before installing Isaac Lab, ensure the latest pip version is installed. To update pip, run
......
...@@ -44,7 +44,7 @@ EXTRAS_REQUIRE = { ...@@ -44,7 +44,7 @@ EXTRAS_REQUIRE = {
"sb3": ["stable-baselines3>=2.1"], "sb3": ["stable-baselines3>=2.1"],
"skrl": ["skrl>=1.4.1"], "skrl": ["skrl>=1.4.1"],
"rl-games": ["rl-games==1.6.1", "gym"], # rl-games still needs gym :( "rl-games": ["rl-games==1.6.1", "gym"], # rl-games still needs gym :(
"rsl-rl": ["rsl-rl@git+https://github.com/leggedrobotics/rsl_rl.git"], "rsl-rl": ["rsl-rl-lib@git+https://github.com/leggedrobotics/rsl_rl.git"],
} }
# Add the names with hyphens as aliases for convenience # Add the names with hyphens as aliases for convenience
EXTRAS_REQUIRE["rl_games"] = EXTRAS_REQUIRE["rl-games"] EXTRAS_REQUIRE["rl_games"] = EXTRAS_REQUIRE["rl-games"]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment