Isaac Sim ui crash

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 · GitHub ) following the instructions provided on Isaac Lab’s Contributing Guidelines ( Contribution Guidelines — Isaac Lab Documentation ).

6.0.0
5.1.0
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
Ubuntu 22.04
Ubuntu 20.04
Windows 11
Windows 10
Other (please specify):

GPU Information

  • Model: RTX4060
  • Driver Version: 13.2 CUDA

Topic Description

Detailed Description

When I run isaacsim command in my local machine, the isaac ui cannot work and throw UI crashed error

Steps to Reproduce

  1. run isaacsim in local

Error Messages

Screenshots or Videos

Additional Information

What I’ve Tried

I think this issue didn’t happen before but when I did some system update, this issue has happened. But If I run some rl train tasks with headless mode, the task can work well. It looks like a UI crash but I don’t know the reason

Related Issues

(If you’re aware of any related issues or forum posts, please link them here)

Additional Context

(Add any other context about the problem here)

Hi @tingma997,

Since this started after a system update, the most likely cause is that your GPU driver was updated to 595.58.03, which is a known incompatibility with Isaac Sim 5.1. We’ve seen multiple reports of crashes with this driver version (#568 , #586 , Forum #366918
).

Please check your driver version:

  nvidia-smi | head -3                                                                                                                                                                                                                                                                                                                                                   

If it shows 595.58.03, downgrade to 580.x (the validated driver for Isaac Sim 5.1):

  sudo apt install nvidia-driver-580                                                                                                                                                                                                                                                                                                                                     

Or if using the .run installer, get it from the Unix Driver Archive (Unix Drivers | NVIDIA).

This explains why headless mode still works (it uses less of the rendering/display stack) while the GUI crashes.

Also note: the ]system requirements ](Isaac Sim Requirements — Isaac Sim Documentation) list RTX 4080 as the minimum GPU. Your RTX 4060 (8GB) is below spec, which may cause additional issues with VRAM-intensive workflows — but the crash itself is almost certainly the driver.