Unverified Commit 829f6fe5 authored by samibouziri's avatar samibouziri Committed by GitHub

Updates pip_installation.rst (#1806)

# 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: 's avatarsamibouziri <79418773+samibouziri@users.noreply.github.com>
Co-authored-by: 's avatarKelly Guo <kellyg@nvidia.com>
Co-authored-by: 's avatarMayank Mittal <12863862+Mayankm96@users.noreply.github.com>
parent 49faf520
......@@ -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
......
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