Problem
The Franka embodiment at isaaclab_arena/embodiments/franka/franka.py:50 hardcodes a USD path:
usd_path=f"{ISAACLAB_NUCLEUS_DIR}/Arena/assets/robot_library/franka_panda_hand_on_stand.usd"
This file is not present in the repository — there are zero .usd files in the entire Arena source tree. This makes the Franka robot embodiment unusable without an active Nucleus connection.
Error
When running any task with Franka (e.g. ReachCube):
FileNotFoundError: [Errno 2] No such file or directory: '/isaac-sim/assets/Isaac/IsaacLab/Arena/assets/robot_library/franka_panda_hand_on_stand.usd'
Attempting to symlink panda_instanceable.usd (from IsaacLab's own assets) as a workaround fails later with:
[Error] [omni.physx.tensors.plugin] GPU tensor initialization failure
because the USD structure is incompatible.
Request
Please either:
- Bundle the USD file in the repo, or
- Provide a documented local fallback that works offline, or
- Clarify the Nucleus dependency in README so users know Franka requires an internet connection / Nucleus server
Problem
The Franka embodiment at
isaaclab_arena/embodiments/franka/franka.py:50hardcodes a USD path:This file is not present in the repository — there are zero
.usdfiles in the entire Arena source tree. This makes the Franka robot embodiment unusable without an active Nucleus connection.Error
When running any task with Franka (e.g.
ReachCube):Attempting to symlink
panda_instanceable.usd(from IsaacLab's own assets) as a workaround fails later with:because the USD structure is incompatible.
Request
Please either: