[Solution] How to resolve the `temp_jupyter_stage.usd` problem in Hello World tutorial bug

Hi, bros!

Problem
While I follow the Isaac Sim, Hello Word tutorial, I stuck at step 2:
https://docs.omniverse.nvidia.com/app_isaacsim/app_isaacsim/tutorial_required_hello_world.html#converting-it-to-a-standalone-application-using-jupyter-notebook

  1. Execute the first cell in the notebook

Environment
Isaac Sim on Ubuntu Docker container on AWS EC2 + DCV

Solution
The solution is to change the user name.
Before:

simulation_app = SimulationApp({“livesync_usd”: f’omniverse://localhost/Users/{user}/temp_jupyter_stage.usd’})

After:

simulation_app = SimulationApp({“livesync_usd”: f’omniverse://localhost/Users/admin/temp_jupyter_stage.usd’})

Though the ‘admin’ is the default user name in Docker usage, the ‘admin’ seem to be changed to your corresponding user name on Nucleus server folders in other usage.

Suggestion
In the tutorial, the description to change the ‘{user}’ to ‘admin’ would be guided for container user.