Skip to content

Commit

Permalink
Updates pip_installation.rst (#1806)
Browse files Browse the repository at this point in the history
# Description
The pip command:
```
pip install isaacsim[all,extscache]==4.5.0 --extra-index-url https://pypi.nvidia.com
```
does not work because of the brackets and would give the following
error:
```
no matches found: isaacsim[all,extscache]==4.5.0
```
There exist two ways to fix this either by quoting:
```
pip install 'isaacsim[all,extscache]==4.5.0' --extra-index-url https://pypi.nvidia.com
```
or by escaping the brackets:
```
pip install isaacsim\[all,extscache\]==4.5.0 --extra-index-url https://pypi.nvidia.com
```

Fixes # (issue)

<!-- 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

<!-- As you go through the list, delete the ones that are not
applicable. -->
-Documentation update

## Checklist

- [x] I have made corresponding changes to the documentation
- [ ] I have added my name to the `CONTRIBUTORS.md` or my name already
exists there

<!--
As you go through the checklist above, you can mark something as done by
putting an x character in it

For example,
- [x] I have done this task
- [ ] I have not done this task
-->

Signed-off-by: samibouziri <[email protected]>
Co-authored-by: Kelly Guo <[email protected]>
Co-authored-by: Mayank Mittal <[email protected]>
  • Loading branch information
3 people authored Feb 20, 2025
1 parent 49faf52 commit 829f6fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/source/setup/installation/pip_installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ If you encounter any issues, please report them to the

.. code-block:: none
pip install isaacsim[all,extscache]==4.5.0 --extra-index-url https://pypi.nvidia.com
pip install 'isaacsim[all,extscache]==4.5.0' --extra-index-url https://pypi.nvidia.com
Verifying the Isaac Sim installation
Expand Down

0 comments on commit 829f6fe

Please sign in to comment.