Skip to content

Commit

Permalink
Fixed torch version
Browse files Browse the repository at this point in the history
  • Loading branch information
Dhoeller19 committed Jun 1, 2024
1 parent 5aacc16 commit 7ceccc0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions docs/source/setup/installation/pip_installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -36,21 +36,21 @@ Installing Isaac Sim
isaaclab\Scripts\activate
- Next, install a CUDA-enabled PyTorch 2.3.0 build based on the CUDA version available on your system.
- Next, install a CUDA-enabled PyTorch 2.2.2 build based on the CUDA version available on your system.

.. tabs::

.. tab:: CUDA 11

.. code-block:: bash
pip install torch --index-url https://download.pytorch.org/whl/cu118
pip install torch==2.2.2 --index-url https://download.pytorch.org/whl/cu118
.. tab:: CUDA 12

.. code-block:: bash
pip install torch
pip install torch==2.2.2 --index-url https://download.pytorch.org/whl/cu121
- Then, install the Isaac Sim packages necessary for running Isaac Lab:
Expand Down
2 changes: 1 addition & 1 deletion source/extensions/omni.isaac.lab/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
INSTALL_REQUIRES = [
# generic
"numpy",
"torch==2.3.0",
"torch>=2.2.2",
"prettytable==3.3.0",
"tensordict",
"toml",
Expand Down
2 changes: 1 addition & 1 deletion source/extensions/omni.isaac.lab_tasks/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
INSTALL_REQUIRES = [
# generic
"numpy",
"torch==2.3.0",
"torch>=2.2.2",
"torchvision>=0.14.1", # ensure compatibility with torch 1.13.1
# 5.26.0 introduced a breaking change, so we restricted it for now.
# See issue https://github.com/tensorflow/tensorboard/issues/6808 for details.
Expand Down

0 comments on commit 7ceccc0

Please sign in to comment.