Skip to content

Commit 157a19e

Browse files
committed
Updates Isaac Sim doc links (#266)
# Description Isaac Sim 4.5 documentation moved to a new URL, updating links for the Isaac Sim docs to new URLs. Additionally, we will be updating VERSION for every commit to the repo, so this change updates the documentation parsing to use only the major, minor, and patch versions from VERSION.
1 parent 2395376 commit 157a19e

23 files changed

+47
-45
lines changed

docker/Dockerfile.ros2

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@ RUN --mount=type=cache,target=/var/cache/apt \
3131
echo "source /opt/ros/humble/setup.bash" >> ${HOME}/.bashrc
3232

3333
# Copy the RMW specifications for ROS2
34-
# https://docs.omniverse.nvidia.com/isaacsim/latest/installation/install_ros.html#enabling-the-ros-bridge-extension
34+
# https://docs.isaacsim.omniverse.nvidia.com/latest/installation/install_ros.html
3535
COPY docker/.ros/ ${DOCKER_USER_HOME}/.ros/

docs/conf.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@
3535

3636
# Read version from the package
3737
with open(os.path.join(os.path.dirname(__file__), "..", "VERSION")) as f:
38-
version = f.read().strip()
38+
full_version = f.read().strip()
39+
version = ".".join(full_version.split(".")[:3])
3940

4041
# -- General configuration ---------------------------------------------------
4142

docs/index.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ Table of Contents
149149
:caption: Project Links
150150

151151
GitHub <https://github.com/isaac-sim/IsaacLab>
152-
NVIDIA Isaac Sim <https://docs.omniverse.nvidia.com/isaacsim/latest/index.html>
152+
NVIDIA Isaac Sim <https://docs.isaacsim.omniverse.nvidia.com/latest/index.html>
153153
NVIDIA PhysX <https://nvidia-omniverse.github.io/PhysX/physx/5.4.1/index.html>
154154

155155
Indices and tables
@@ -159,4 +159,4 @@ Indices and tables
159159
* :ref:`modindex`
160160
* :ref:`search`
161161

162-
.. _NVIDIA Isaac Sim: https://docs.omniverse.nvidia.com/isaacsim/latest/index.html
162+
.. _NVIDIA Isaac Sim: https://docs.isaacsim.omniverse.nvidia.com/latest/index.html

docs/source/how-to/import_new_asset.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -230,9 +230,9 @@ of gravity.
230230

231231

232232
.. _instanceable: https://openusd.org/dev/api/_usd__page__scenegraph_instancing.html
233-
.. _documentation: https://docs.omniverse.nvidia.com/isaacsim/latest/isaac_lab_tutorials/tutorial_instanceable_assets.html
234-
.. _MJCF importer: https://docs.omniverse.nvidia.com/isaacsim/latest/advanced_tutorials/tutorial_advanced_import_mjcf.html
235-
.. _URDF importer: https://docs.omniverse.nvidia.com/isaacsim/latest/advanced_tutorials/tutorial_advanced_import_urdf.html
233+
.. _documentation: https://docs.isaacsim.omniverse.nvidia.com/latest/isaac_lab_tutorials/tutorial_instanceable_assets.html
234+
.. _MJCF importer: https://docs.isaacsim.omniverse.nvidia.com/latest/robot_setup/import_mjcf.html
235+
.. _URDF importer: https://docs.isaacsim.omniverse.nvidia.com/latest/robot_setup/import_urdf.html
236236
.. _anymal.urdf: https://github.com/isaac-orbit/anymal_d_simple_description/blob/master/urdf/anymal.urdf
237237
.. _asset converter: https://docs.omniverse.nvidia.com/extensions/latest/ext_asset-converter.html
238238
.. _mujoco_menagerie: https://github.com/google-deepmind/mujoco_menagerie/tree/main/unitree_h1

docs/source/how-to/master_omniverse.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ Importing assets
6868

6969
- `Omniverse Create - Importing FBX Files \| NVIDIA Omniverse Tutorials <https://youtu.be/dQI0OpzfVHw>`__
7070
- `Omniverse Asset Importer <https://docs.omniverse.nvidia.com/extensions/latest/ext_asset-importer.html>`__
71-
- `Isaac Sim URDF impoter <https://docs.omniverse.nvidia.com/isaacsim/latest/ext_omni_isaac_urdf.html>`__
71+
- `Isaac Sim URDF impoter <https://docs.isaacsim.omniverse.nvidia.com/latest/robot_setup/ext_isaacsim_asset_importer_urdf.html>`__
7272

7373

7474
Part 2: Scripting in Omniverse
@@ -117,8 +117,8 @@ As a test of understanding, make sure you can answer the following:
117117
Part 3: More Resources
118118
----------------------
119119

120-
- `Omniverse Glossary of Terms <https://docs.omniverse.nvidia.com/isaacsim/latest/common/glossary-of-terms.html>`__
120+
- `Omniverse Glossary of Terms <https://docs.isaacsim.omniverse.nvidia.com/latest/reference_material/reference_glossary.html>`__
121121
- `Omniverse Code Samples <https://docs.omniverse.nvidia.com/dev-guide/latest/programmer_ref.html>`__
122122
- `PhysX Collider Compatibility <https://docs.omniverse.nvidia.com/extensions/latest/ext_physics/rigid-bodies.html#collidercompatibility>`__
123-
- `PhysX Limitations <https://docs.omniverse.nvidia.com/isaacsim/latest/simulation_fundamentals.html#omni-physics-and-physx-limitations>`__
123+
- `PhysX Limitations <https://docs.isaacsim.omniverse.nvidia.com/latest/physics/physics_resources.html>`__
124124
- `PhysX Documentation <https://nvidia-omniverse.github.io/PhysX/physx/>`__.

docs/source/overview/developer-guide/repo_structure.rst

+4-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,10 @@ Repository organization
3232
├── tools
3333
└── VERSION
3434
35-
Isaac Lab is built on the same back end as Isaac Sim. As such, it exists as a collection of **extensions** that can be assembled into **applications**. The ``source`` directory contains the majority of the code in the repository and the specific extensions that compose Isaac lab, while ``scripts`` containing python scripts for launching customized standalone apps (Like our workflows). These are the two primary ways of interacting with the simulation and Isaac lab supports both! Checkout this `Isaac Sim introduction to workflows <https://docs.omniverse.nvidia.com/isaacsim/latest/introductory_tutorials/tutorial_intro_workflows.html>`__ for more details.
35+
Isaac Lab is built on the same back end as Isaac Sim. As such, it exists as a collection of **extensions** that can be assembled into **applications**.
36+
The ``source`` directory contains the majority of the code in the repository and the specific extensions that compose Isaac lab, while ``scripts`` containing python scripts for launching customized standalone apps (Like our workflows).
37+
These are the two primary ways of interacting with the simulation and Isaac lab supports both!
38+
Checkout this `Isaac Sim introduction to workflows <https://docs.isaacsim.omniverse.nvidia.com/latest/introduction/workflows.html>`__ for more details.
3639

3740
Extensions
3841
~~~~~~~~~~

docs/source/overview/developer-guide/vs_code.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ For more information on VSCode support for Omniverse, please refer to the
4444
following links:
4545

4646
* `Isaac Sim VSCode support <https://docs.omniverse.nvidia.com/app_isaacsim/app_isaacsim/manual_standalone_python.html#isaac-sim-python-vscode>`__
47-
* `Debugging with VSCode <https://docs.omniverse.nvidia.com/isaacsim/latest/advanced_tutorials/tutorial_advanced_python_debugging.html>`__
47+
* `Debugging with VSCode <https://docs.isaacsim.omniverse.nvidia.com/latest/development_tools/vscode.html#visual-studio-code-vs-code>`__
4848

4949

5050
Configuring the python interpreter

docs/source/refs/additional_resources.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Simulation Features
2727

2828
At the heart of Isaac Lab is Isaac Sim, which is itself a feature rich tool that is useful for robotics in general, and not only for RL. The stronger your understanding of the simulation, the readily you will be able to exploit its capabilities for your own projects and applications. These resources are dedicated to informing you about the other features of the simulation that may be useful to you given your specific interest in Isaac Lab!
2929

30-
* `Deploying Policies in Isaac Sim <https://docs.omniverse.nvidia.com/isaacsim/latest/isaac_lab_tutorials/tutorial_policy_deployment.html>`_ is an Isaac Sim tutorial on how to use trained policies within the simulation.
30+
* `Deploying Policies in Isaac Sim <https://docs.isaacsim.omniverse.nvidia.com/latest/isaac_lab_tutorials/tutorial_policy_deployment.html>`_ is an Isaac Sim tutorial on how to use trained policies within the simulation.
3131

3232
* `Supercharge Robotics Workflows with AI and Simulation Using NVIDIA Isaac Sim 4.0 and NVIDIA Isaac Lab <https://developer.nvidia.com/blog/supercharge-robotics-workflows-with-ai-and-simulation-using-nvidia-isaac-sim-4-0-and-nvidia-isaac-lab/>`_ is a blog post covering the newest features of Isaac Sim 4.0, including ``pip install``, a more advanced physics engine, updated sensor simulations, and more!
3333

docs/source/refs/contributing.rst

+3-4
Original file line numberDiff line numberDiff line change
@@ -176,11 +176,10 @@ integrated with the `NVIDIA Omniverse Platform <https://developer.nvidia.com/omn
176176
Since all assets are hosted on Nucleus, we do not need to include them in the repository. However,
177177
we need to include the links to the assets in the documentation.
178178

179-
The included assets are part of the `Isaac Sim Content <https://docs.omniverse.nvidia.com/isaacsim/latest/features/environment_setup/assets/usd_assets_overview.html>`__.
180-
To use this content, you need to download the files to a Nucleus server or create an **Isaac** Mount on
181-
a Nucleus server.
179+
The included assets are part of the `Isaac Sim Content <https://docs.isaacsim.omniverse.nvidia.com/latest/assets/index.html>`__.
180+
To use this content, you can use the Asset Browser provided in Isaac Sim.
182181

183-
Please check the `Isaac Sim documentation <https://docs.omniverse.nvidia.com/app_isaacsim/app_isaacsim/install_faq.html#assets-and-nucleus>`__
182+
Please check the `Isaac Sim documentation <https://docs.isaacsim.omniverse.nvidia.com/latest/assets/index.html>`__
184183
for more information on how to download the assets.
185184

186185
.. attention::

docs/source/refs/issues.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ This is then replicated across other references of the same asset since physics
7575
are stored in the instanceable asset's USD file and not in its stage reference's USD file.
7676

7777
.. _instanceable assets: https://docs.omniverse.nvidia.com/app_isaacsim/app_isaacsim/tutorial_gym_instanceable_assets.html
78-
.. _Omniverse Isaac Sim documentation: https://docs.omniverse.nvidia.com/isaacsim/latest/known_issues.html
78+
.. _Omniverse Isaac Sim documentation: https://docs.isaacsim.omniverse.nvidia.com/latest/overview/known_issues.html#
7979

8080

8181
Exiting the process

docs/source/refs/license.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ NVIDIA Isaac Sim is available freely under `individual license
77
<https://www.nvidia.com/en-us/omniverse/download/>`_. For more information
88
about its license terms, please check `here <https://docs.omniverse.nvidia.com/app_isaacsim/common/NVIDIA_Omniverse_License_Agreement.html#software-support-supplement>`_.
99
The license files for all its dependencies and included assets are available in its
10-
`documentation <https://docs.omniverse.nvidia.com/isaacsim/latest/common/licenses.html>`_.
10+
`documentation <https://docs.isaacsim.omniverse.nvidia.com/latest/common/licenses.html>`_.
1111

1212

1313
The Isaac Lab framework is open-sourced under the

docs/source/refs/reference_architecture/index.rst

+4-4
Original file line numberDiff line numberDiff line change
@@ -360,11 +360,11 @@ Learn More About Featured NVIDIA Solutions
360360

361361
.. _curriculum learning: https://arxiv.org/abs/2109.11978
362362
.. _CAD Converter: https://docs.omniverse.nvidia.com/extensions/latest/ext_cad-converter.html
363-
.. _URDF Importer: https://docs.omniverse.nvidia.com/isaacsim/latest/advanced_tutorials/tutorial_advanced_import_urdf.html
364-
.. _MJCF Importer: https://docs.omniverse.nvidia.com/isaacsim/latest/advanced_tutorials/tutorial_advanced_import_mjcf.html#import-mjcf
363+
.. _URDF Importer: https://docs.isaacsim.omniverse.nvidia.com/latest/robot_setup/ext_isaacsim_asset_importer_urdf.html
364+
.. _MJCF Importer: https://docs.isaacsim.omniverse.nvidia.com/latest/robot_setup/ext_isaacsim_asset_importer_mjcf.html
365365
.. _Onshape Importer: https://docs.omniverse.nvidia.com/extensions/latest/ext_onshape.html
366-
.. _Isaac Sim Reference Architecture: https://docs.omniverse.nvidia.com/isaacsim/latest/isaac_sim_reference_architecture.html
367-
.. _Importing Assets section: https://docs.omniverse.nvidia.com/isaacsim/latest/isaac_sim_reference_architecture.html#importing-assets
366+
.. _Isaac Sim Reference Architecture: https://docs.isaacsim.omniverse.nvidia.com/latest/isaac_sim_reference_architecture.html
367+
.. _Importing Assets section: https://docs.isaacsim.omniverse.nvidia.com/latest/isaac_sim_reference_architecture.html#importing-assets
368368

369369
.. _Scale AI-Enabled Robotics Development Workloads with NVIDIA OSMO: https://developer.nvidia.com/blog/scale-ai-enabled-robotics-development-workloads-with-nvidia-osmo/
370370
.. _Isaac Perceptor: https://developer.nvidia.com/isaac/perceptor

docs/source/refs/release_notes.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -575,7 +575,7 @@ v1.1.0
575575
Overview
576576
--------
577577

578-
With the release of Isaac Sim 4.0 and 4.1, support for Isaac Sim 2023.1.1 has been discontinued. We strongly encourage all users to upgrade to Isaac Sim 4.1 to take advantage of the latest features and improvements. For detailed information on this upgrade, please refer to the release notes available `here <https://docs.omniverse.nvidia.com/isaacsim/latest/release_notes.html>`_.
578+
With the release of Isaac Sim 4.0 and 4.1, support for Isaac Sim 2023.1.1 has been discontinued. We strongly encourage all users to upgrade to Isaac Sim 4.1 to take advantage of the latest features and improvements. For detailed information on this upgrade, please refer to the release notes available `here <https://docs.isaacsim.omniverse.nvidia.com/latest/overview/release_notes.html#>`_.
579579

580580
Besides the above, the Isaac Lab release brings new features and improvements, as detailed below. We thank all our contributors for their continued support.
581581

docs/source/refs/troubleshooting.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Checking the internal logs from the simulator
3737
When running the simulator from a standalone script, it logs warnings and errors to the terminal. At the same time,
3838
it also logs internal messages to a file. These are useful for debugging and understanding the internal state of the
3939
simulator. Depending on your system, the log file can be found in the locations listed
40-
`here <https://docs.omniverse.nvidia.com/isaacsim/latest/installation/install_faq.html#common-path-locations>`_.
40+
`here <https://docs.isaacsim.omniverse.nvidia.com/latest/installation/install_faq.html#common-path-locations>`_.
4141

4242
To obtain the exact location of the log file, you need to check the first few lines of the terminal output when
4343
you run the standalone script. The log file location is printed at the start of the terminal output. For example:

docs/source/setup/installation/binaries_installation.rst

+6-6
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ Downloading pre-built binaries
1212
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1313

1414
Please follow the Isaac Sim
15-
`documentation <https://docs.omniverse.nvidia.com/isaacsim/latest/installation/install_workstation.html>`__
15+
`documentation <https://docs.isaacsim.omniverse.nvidia.com/latest/installation/install_workstation.html>`__
1616
to install the latest Isaac Sim release.
1717

18-
From Isaac Sim 4.5 release, Isaac Sim binaries can be `downloaded <https://docs.omniverse.nvidia.com/isaacsim/latest/installation/download.html#download-isaac-sim-short>`_ directly as a zip file.
18+
From Isaac Sim 4.5 release, Isaac Sim binaries can be `downloaded <https://docs.isaacsim.omniverse.nvidia.com/latest/installation/download.html#download-isaac-sim-short>`_ directly as a zip file.
1919

2020
To check the minimum system requirements,refer to the documentation
21-
`here <https://docs.omniverse.nvidia.com/isaacsim/latest/installation/requirements.html>`__.
21+
`here <https://docs.isaacsim.omniverse.nvidia.com/latest/installation/requirements.html>`__.
2222

2323
.. tab-set::
2424
:sync-group: os
@@ -82,7 +82,7 @@ variables to your terminal for the remaining of the installation instructions:
8282
8383
8484
For more information on common paths, please check the Isaac Sim
85-
`documentation <https://docs.omniverse.nvidia.com/isaacsim/latest/installation/install_faq.html#common-path-locations>`__.
85+
`documentation <https://docs.isaacsim.omniverse.nvidia.com/latest/installation/install_faq.html#common-path-locations>`__.
8686

8787

8888
- Check that the simulator runs as expected:
@@ -158,7 +158,7 @@ instructions, it means that something is incorrectly configured. To
158158
debug and troubleshoot, please check Isaac Sim
159159
`documentation <https://docs.omniverse.nvidia.com/dev-guide/latest/linux-troubleshooting.html>`__
160160
and the
161-
`forums <https://docs.omniverse.nvidia.com/isaacsim/latest/isaac_sim_forums.html>`__.
161+
`forums <https://docs.isaacsim.omniverse.nvidia.com/latest/isaac_sim_forums.html>`__.
162162

163163

164164
Installing Isaac Lab
@@ -287,7 +287,7 @@ The executable ``isaaclab.sh`` automatically fetches the python bundled with Isa
287287
Sim, using ``./isaaclab.sh -p`` command (unless inside a virtual environment). This executable
288288
behaves like a python executable, and can be used to run any python script or
289289
module with the simulator. For more information, please refer to the
290-
`documentation <https://docs.omniverse.nvidia.com/isaacsim/latest/manual_standalone_python.html#isaac-sim-python-environment>`__.
290+
`documentation <https://docs.isaacsim.omniverse.nvidia.com/latest/python_scripting/manual_standalone_python.html>`__.
291291

292292
To install ``conda``, please follow the instructions `here <https://docs.conda.io/projects/conda/en/latest/user-guide/install/index.html>`__.
293293
You can create the Isaac Lab environment using the following commands.

docs/source/setup/installation/index.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@ Local Installation
2323
Isaac Sim 4.5.0 release to benefit from the latest features and improvements.
2424

2525
For more information, please refer to the
26-
`Isaac Sim release notes <https://docs.omniverse.nvidia.com/isaacsim/latest/release_notes.html>`__.
26+
`Isaac Sim release notes <https://docs.isaacsim.omniverse.nvidia.com/latest/overview/release_notes.html#>`__.
2727

2828
.. note::
2929

3030
We recommend system requirements with at least 32GB RAM and 16GB VRAM for Isaac Lab.
3131
For the full list of system requirements for Isaac Sim, please refer to the
32-
`Isaac Sim system requirements <https://docs.omniverse.nvidia.com/isaacsim/latest/installation/requirements.html#system-requirements>`_.
32+
`Isaac Sim system requirements <https://docs.isaacsim.omniverse.nvidia.com/latest/installation/requirements.html#system-requirements>`_.
3333

3434

3535
Isaac Lab is built on top of the Isaac Sim platform. Therefore, it is required to first install Isaac Sim

docs/source/setup/installation/isaaclab_pip_installation.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ Verifying the Isaac Sim installation
128128
.. code:: bash
129129
130130
By installing or using Isaac Sim, I agree to the terms of NVIDIA OMNIVERSE LICENSE AGREEMENT (EULA)
131-
in https://docs.omniverse.nvidia.com/isaacsim/latest/common/NVIDIA_Omniverse_License_Agreement.html
131+
in https://docs.isaacsim.omniverse.nvidia.com/latest/common/NVIDIA_Omniverse_License_Agreement.html
132132
133133
Do you accept the EULA? (Yes/No): Yes
134134
@@ -138,7 +138,7 @@ instructions, it means that something is incorrectly configured. To
138138
debug and troubleshoot, please check Isaac Sim
139139
`documentation <https://docs.omniverse.nvidia.com/dev-guide/latest/linux-troubleshooting.html>`__
140140
and the
141-
`forums <https://docs.omniverse.nvidia.com/isaacsim/latest/isaac_sim_forums.html>`__.
141+
`forums <https://docs.isaacsim.omniverse.nvidia.com//latest/isaac_sim_forums.html>`__.
142142

143143

144144
Running Isaac Lab Scripts

docs/source/setup/installation/pip_installation.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Installing Isaac Sim
1111
From Isaac Sim 4.0 release, it is possible to install Isaac Sim using pip.
1212
This approach makes it easier to install Isaac Sim without requiring to download the Isaac Sim binaries.
1313
If you encounter any issues, please report them to the
14-
`Isaac Sim Forums <https://docs.omniverse.nvidia.com/isaacsim/latest/common/feedback.html>`_.
14+
`Isaac Sim Forums <https://docs.isaacsim.omniverse.nvidia.com//latest/common/feedback.html>`_.
1515

1616
.. attention::
1717

@@ -158,7 +158,7 @@ instructions, it means that something is incorrectly configured. To
158158
debug and troubleshoot, please check Isaac Sim
159159
`documentation <https://docs.omniverse.nvidia.com/dev-guide/latest/linux-troubleshooting.html>`__
160160
and the
161-
`forums <https://docs.omniverse.nvidia.com/isaacsim/latest/isaac_sim_forums.html>`__.
161+
`forums <https://docs.isaacsim.omniverse.nvidia.com//latest/isaac_sim_forums.html>`__.
162162

163163

164164

docs/source/tutorials/00_sim/create_empty.rst

+2-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ This tutorial shows how to launch and control Isaac Sim simulator from a standal
77
empty scene in Isaac Lab and introduces the two main classes used in the framework, :class:`app.AppLauncher` and
88
:class:`sim.SimulationContext`.
99

10-
Please review `Isaac Sim Interface`_ and `Isaac Sim Workflows`_ prior to beginning this tutorial to get
10+
Please review `Isaac Sim Workflows`_ prior to beginning this tutorial to get
1111
an initial understanding of working with the simulator.
1212

1313

@@ -162,7 +162,6 @@ following:
162162
Now that we have a basic understanding of how to run a simulation, let's move on to the
163163
following tutorial where we will learn how to add assets to the stage.
164164

165-
.. _`Isaac Sim Interface`: https://docs.omniverse.nvidia.com/isaacsim/latest/introductory_tutorials/tutorial_intro_interface.html#isaac-sim-app-tutorial-intro-interface
166-
.. _`Isaac Sim Workflows`: https://docs.omniverse.nvidia.com/isaacsim/latest/introductory_tutorials/tutorial_intro_workflows.html
165+
.. _`Isaac Sim Workflows`: https://docs.isaacsim.omniverse.nvidia.com/latest/introduction/workflows.html
167166
.. _carb: https://docs.omniverse.nvidia.com/kit/docs/carbonite/latest/index.html
168167
.. _`physics scene`: https://docs.omniverse.nvidia.com/prod_extensions/prod_extensions/ext_physics.html#physics-scene

docs/source/tutorials/00_sim/launch_app.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -173,4 +173,4 @@ terminal.
173173

174174

175175
.. _specification: https://docs.omniverse.nvidia.com/py/isaacsim/source/isaacsim.simulation_app/docs/index.html#isaacsim.simulation_app.SimulationApp.DEFAULT_LAUNCHER_CONFIG
176-
.. _WebRTC Livestreaming: https://docs.omniverse.nvidia.com/isaacsim/latest/installation/manual_livestream_clients.html#isaac-sim-short-webrtc-streaming-client
176+
.. _WebRTC Livestreaming: https://docs.isaacsim.omniverse.nvidia.com/latest/installation/manual_livestream_clients.html#isaac-sim-short-webrtc-streaming-client

0 commit comments

Comments
 (0)