Skip to content

Commit aa0f8d2

Browse files
authored
Merge pull request #108 from j3soon/fix/isaac-ros-with-isaacsim-5-0-0
Fix Isaac ROS with Isaac Sim 5.0.0
2 parents bdbb82d + 14e949a commit aa0f8d2

File tree

1 file changed

+12
-6
lines changed

1 file changed

+12
-6
lines changed

docs/docker-modules/isaac-ros.md

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,11 @@ sudo apt-get install -y ros-humble-isaac-ros-examples
3636

3737
## Start Simulation Environment (Isaac Sim)
3838

39-
Apply [the CUDA workaround](https://docs.isaacsim.omniverse.nvidia.com/4.5.0/overview/known_issues.html) and launch Isaac Sim:
39+
[Remove CUDA 12.6 from `LD_LIBRARY_PATH`](https://github.com/isaac-sim/IsaacSim/issues/81#issuecomment-3098732838) and launch Isaac Sim:
4040

4141
```sh
42-
# Workaround for CUDA error
43-
export LD_LIBRARY_PATH=/home/user/isaacsim/extscache/omni.sensors.nv.common-2.5.0-coreapi+lx64.r.cp310/bin:$LD_LIBRARY_PATH
42+
# Workaround for CUDA version
43+
export LD_LIBRARY_PATH=$(echo "$LD_LIBRARY_PATH" | sed -e 's|:/usr/local/cuda-12.6/lib64||')
4444
~/isaacsim/isaac-sim.sh
4545
```
4646

@@ -52,7 +52,13 @@ export LD_LIBRARY_PATH=/home/user/isaacsim/extscache/omni.sensors.nv.common-2.5.
5252

5353
- For Nvblox:
5454

55-
Click `Isaac Sim Assets [Beta] > SAMPLES`, search for `nvblox_sample_scene.usd`, select it and click `Open File`. After the scene loaded, click the `Play` button to start the simulation. If a warning message appears, click `OK` to allow script execution.
55+
Open the `nvblox_sample_scene.usd` scene by pasting the following to the `Content` window:
56+
57+
```
58+
https://omniverse-content-production.s3-us-west-2.amazonaws.com/Assets/Isaac/5.0/Isaac/Samples/NvBlox/nvblox_sample_scene.usd
59+
```
60+
61+
After the scene loaded, click the `Play` button to start the simulation. If a warning message appears, click `OK` to allow script execution.
5662

5763
![](assets/isaac-ros-isaac-sim-nvblox.png)
5864

@@ -79,7 +85,7 @@ In another terminal, launch RViz:
7985
```sh
8086
rviz2 -d $(ros2 pkg prefix isaac_ros_apriltag --share)/rviz/default.rviz
8187
# or
82-
ros2 topic echo /tag_detections
88+
# ros2 topic echo /tag_detections
8389
```
8490

8591
![](assets/isaac-ros-apriltag-rviz.png)
@@ -115,7 +121,7 @@ Then, launch RViz:
115121
```sh
116122
rviz2 -d $(ros2 pkg prefix isaac_ros_visual_slam --share)/rviz/isaac_sim.cfg.rviz
117123
# or
118-
ros2 topic echo /visual_slam/tracking/odometry
124+
# ros2 topic echo /visual_slam/tracking/odometry
119125
```
120126

121127
![](assets/isaac-ros-vslam-rviz.png)

0 commit comments

Comments
 (0)