• samibouziri's avatar
    Updates pip_installation.rst (#1806) · 829f6fe5
    samibouziri authored
    # 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>
    829f6fe5
Name
Last commit
Last update
.aws Loading commit data...
.github Loading commit data...
.vscode Loading commit data...
apps Loading commit data...
docker Loading commit data...
docs Loading commit data...
scripts Loading commit data...
source Loading commit data...
tools Loading commit data...
.dockerignore Loading commit data...
.flake8 Loading commit data...
.gitattributes Loading commit data...
.gitignore Loading commit data...
.pre-commit-config.yaml Loading commit data...
CONTRIBUTING.md Loading commit data...
CONTRIBUTORS.md Loading commit data...
LICENSE Loading commit data...
LICENSE-mimic Loading commit data...
README.md Loading commit data...
SECURITY.md Loading commit data...
VERSION Loading commit data...
isaaclab.bat Loading commit data...
isaaclab.sh Loading commit data...
pyproject.toml Loading commit data...