Important: Isaac Sim support
Note: For Isaac Sim support, the community is gradually transitioning from this forum to the Isaac Sim GitHub repository so that questions and issues can be tracked, searched, and resolved more efficiently in one place. Whenever possible, please create a GitHub Discussion or Issue there instead of starting a new forum topic.
Note: For any Isaac Lab topics, please submit your topic to its GitHub repo ( GitHub - isaac-sim/IsaacLab: Unified framework for robot learning built on NVIDIA Isaac Sim ) following the instructions provided on Isaac Lab’s Contributing Guidelines ( Contribution Guidelines — Isaac Lab Documentation ).
Please provide all relevant details below before submitting your post. This will help the community provide more accurate and timely assistance. After submitting, you can check the appropriate boxes. Remember, you can always edit your post later to include additional information if needed.
Every time I launch Isaac Sim via a desktop icon, the file path in the launcher/desktop entry becomes invalid or points somewhere that no longer exists. The desktop icon stops launching Isaac Sim unless I manually search for the correct path again. I’m using an Isaac Lab conda environment install (pip/conda) rather than an Omniverse Launcher package install.
6.0.0
5.1.0 (this one)
5.0.0
4.5.0
4.2.0
4.1.0
4.0.0
4.5.0
2023.1.1
2023.1.0-hotfix.1
Other (please specify):
Operating System
Ubuntu 24.04 (this one)
Ubuntu 22.04
Ubuntu 20.04
Windows 11
Windows 10
Other (please specify):
GPU Information
- Model: RTX 5070
- Driver Version: 580
Topic Description
Detailed Description
(Describe the issue in detail, including what you were trying to do, what you expected to happen, and what actually happened)
I have Isaac Sim 5.1 installed via Isaac Lab / conda (miniforge). I created a desktop launcher (~/.local/share/applications/IsaacSim.desktop) that points to an executable under my conda env’s site-packages:
Exec=/home/sgk/miniforge3/envs/isaaclab311/lib/python3.11/site-packages/isaacsim/isaac-sim.sh
However, when I try to launch Isaac Sim from the desktop icon, it stops working and the Exec target path no longer exists. When I run the same Exec path in terminal I get:
bash: .../isaac-sim.sh: No such file or directory
I also tried launching from the default Omniverse Launcher-style path but that directory doesn’t exist on my machine:
~/.local/share/ov/pkg/isaac-sim-5.1.0/isaac-sim.sh → “No such file or directory”
ls ~/.local/share/ov/pkg/ only shows hub-1.1.0.
Steps to Reproduce
- Install Isaac Sim 5.1 via Isaac Lab / conda environment (
isaaclab311) (not Omniverse Launcher package). - Create desktop entry
~/.local/share/applications/IsaacSim.desktopwith:Exec=/home/sgk/miniforge3/envs/isaaclab311/lib/python3.11/site-packages/isaacsim/isaac-sim.sh
- Click the desktop icon to launch Isaac Sim.
- At some point after updates/restarts, Isaac Sim stops launching from the icon.
- Running the Exec target in terminal shows it no longer exists.
Error Messages
- Desktop Exec target missing:
bash: /home/sgk/miniforge3/envs/isaaclab311/lib/python3.11/site-packages/isaacsim/isaac-sim.sh: No such file or directory
- URDF export error (from UI export attempt):
ValueError: Non-positive determinant (left-handed or null coordinate frame) in rotation matrix 0: [[1. 0. 0.]]
Screenshots or Videos
(If applicable, add screenshots or links to videos that demonstrate the issue)
Additional Information
What I’ve Tried
- Tried launching Isaac Sim from
~/.local/share/ov/pkg/isaac-sim-5.1.0/isaac-sim.shbut Isaac Sim is not installed there (onlyhub-1.1.0exists in~/.local/share/ov/pkg/). - Verified conda env python site-packages path exists:
-
python -c "import sys, site; print(sys.version); print(site.getsitepackages())" -
Shows:
/home/sgk/miniforge3/envs/isaaclab311/lib/python3.11/site-packages
-
- Searched for
isaac-sim.shinside the conda env:-
find "$CONDA_PREFIX" -maxdepth 6 -type f -name "isaac-sim.sh" -
No results (suggesting install layout changed or Isaac Sim is missing from env).
-
- Considering reinstall, but couldn’t find clear “reinstall Isaac Sim (pip/conda / Isaac Lab)” guidance.
Related Issues
none yet
Additional Context
- Goal: use Lula / motion generation on a USD robotic arm in Isaac Sim 5.1, which requires a URDF + Lula robot descriptor YAML.
- URDF export from USD fails due to a non-positive determinant / left-handed frame error, likely from negative scale / mirrored transforms in the USD hierarchy.