A lot of ModuleNotFoundError when creating `simulation_app`

Hi,

I just downloaded omniverse and I am attempting to create a standalone python application. However, when I just try to create a simulation_app using the following code

from omni.isaac.kit import SimulationApp

simulation_app = SimulationApp({"headless": False})

I get a huge amount of ModuleNotFoundError errors.
output.txt (250.0 KB)

Can anyone help me understand how I should debug this?

Thanks in advance!

@bolun i am just another OV user, so take my input here as a grain of salt. from my limited understanding and the provided log, it looks like you will need to import OV related modules/packages; and they need to be imported after the instantiation of the SimulationApp class. you can take a look at this doc for more information pertaining how to go about that:

https://docs.omniverse.nvidia.com/isaacsim/latest/manual_standalone_python.html#simulationapp

Thanks for the response! I’ll check it out!