Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 36 additions & 0 deletions autonomy/simulation/Teleop/keyboard-based teleoperation/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# Task Space Teleoperation — Setup & Run Guide

## Prerequisites

This script requires **Isaac Lab** to be installed and accessible at `/workspace/isaaclab`.

---

## Step 1: Fix Warp Version

Isaac Sim requires `warp-lang==1.5.0`. Run this once to install the correct version:

```bash
/workspace/isaaclab/_isaac_sim/kit/python/bin/python3 -m pip install warp-lang==1.5.0
```

> **Why?** Isaac Sim bundles `omni.warp 1.5.0`, and newer versions of `warp-lang` removed APIs that Isaac Sim depends on (`warp.types.array`, `warp.context`). This will cause startup failures if not pinned correctly.

---

## Step 2: Run the Script

From the `/workspace/isaaclab` directory, run:

```bash
cd /workspace/isaaclab
./isaaclab.sh -p "final_repo/humanoid/autonomy/simulation/Teleop/keyboard-based teleoperation/task_space_test.py"
```

---

## Notes

- Always run from `/workspace/isaaclab` — the `./isaaclab.sh` script must be invoked from that directory.
- Step 1 only needs to be run **once** per container session (or after a container rebuild).
- If you see errors like `AttributeError: module 'warp.types' has no attribute 'array'`, repeat Step 1.
Loading