I have the following code:
from omni.isaac.kit import SimulationApp
import os
# Set rendering parameters and create an instance of kit
CONFIG = {"renderer": "RayTracedLighting", "headless": False, "width": 1024, "height": 1024, "num_frames": 10}
simulation_app = SimulationApp(launch_config=CONFIG)
Upon selecting Run Selected, I get the following error:
>/tmp/carb.uHGX1y/script_1675179561.py
KeyError: 'EXP_PATH'
How should I fix this error?