Skip to content

Commit

Permalink
Bump torch version
Browse files Browse the repository at this point in the history
  • Loading branch information
Dhoeller19 committed Jun 1, 2024
1 parent fdc367e commit 5aacc16
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 7 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.2.2 build based on the CUDA version available on your system.
- Next, install a CUDA-enabled PyTorch 2.3.0 build based on the CUDA version available on your system.

.. tabs::

.. tab:: CUDA 11

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

.. code-block:: bash
pip install torch==2.2.2 --index-url https://download.pytorch.org/whl/cu121
pip install torch
- Then, install the Isaac Sim packages necessary for running Isaac Lab:
Expand Down
1 change: 0 additions & 1 deletion isaaclab.bat
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,6 @@ echo [INFO] Created conda environment named '%env_name%'.
echo.
echo 1. To activate the environment, run: conda activate %env_name%
echo 2. To install Isaac Lab extensions, run: isaaclab -i
echo 3. To install learning-related dependencies, run: isaaclab -e
echo 4. To perform formatting, run: isaaclab -f
echo 5. To deactivate the environment, run: conda deactivate
echo.
Expand Down
1 change: 0 additions & 1 deletion isaaclab.sh
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,6 @@ setup_conda_env() {
echo -e "[INFO] Created conda environment named '${env_name}'.\n"
echo -e "\t\t1. To activate the environment, run: conda activate ${env_name}"
echo -e "\t\t2. To install Isaac Lab extensions, run: isaaclab -i"
echo -e "\t\t3. To install learning-related dependencies, run: isaaclab -e"
echo -e "\t\t4. To perform formatting, run: isaaclab -f"
echo -e "\t\t5. To deactivate the environment, run: conda deactivate"
echo -e "\n"
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.2.2",
"torch==2.3.0",
"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.2.2",
"torch==2.3.0",
"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 5aacc16

Please sign in to comment.