- Install IsaacSim 5.1.0 by downloading release and unzip it to a desired location
$ISAACSIM_PATH - Clone Isaac Lab (2026/01/25) and setup soft link forking to
$ISAACLAB_PATHbycd IsaacLab ln -s $ISAACSIM_PATH _isaac_sim
- Clone this repository to
${workspace} - We leverage
uvfor python interpreter management. Installuvby following the installation guide and setupuvenvironment:Now the workspace should look like this:uv venv --python 3.11 lab source lab/bin/activate uv pip install -U pip${workspace} ├── lab/ # uv venv ├── Arm_X4/ # this repository ├── IsaacLab/ # Isaac Lab repository ├────_isaac_sim/ # soft link to IsaacSim
- Activate
uvenvironment and install IsaacLab and this repository:cd IsaacLab ./isaaclab.sh --uv ../lab # link python interpreter to uv venv ./isaaclab.sh -i rsl_rl # install IsaacLab and rsl_rl library cd Arm_X4 python -m pip install -e source/Arm_X4 # install this repository in editable mode
-
For real-world identification, please refer to:
python scripts/control.py
-
Listing the available tasks:
python scripts/list_envs.py
-
Running a task:
python scripts/rsl_rl/train.py --task=Arm-X4
-
Running a task with dummy agents:
These include dummy agents that output zero or random agents. They are useful to ensure that the environments are configured correctly.
-
Zero-action agent
python scripts/zero_agent.py --task=Arm-X4
-
Random-action agent
python scripts/random_agent.py --task=Arm-X4
-
We have a pre-commit template to automatically format your code. To install pre-commit:
pip install pre-commitThen you can run pre-commit with:
pre-commit run --all-filesIn some VsCode versions, the indexing of part of the extensions is missing.
In this case, add the path to your extension in .vscode/settings.json under the key "python.analysis.extraPaths".
{
"python.analysis.extraPaths": [
"<path-to-ext-repo>/source/Arm_X4"
]
}If you encounter a crash in pylance, it is probable that too many files are indexed and you run out of memory.
A possible solution is to exclude some of omniverse packages that are not used in your project.
To do so, modify .vscode/settings.json and comment out packages under the key "python.analysis.extraPaths"
Some examples of packages that can likely be excluded are:
"<path-to-isaac-sim>/extscache/omni.anim.*" // Animation packages
"<path-to-isaac-sim>/extscache/omni.kit.*" // Kit UI tools
"<path-to-isaac-sim>/extscache/omni.graph.*" // Graph UI tools
"<path-to-isaac-sim>/extscache/omni.services.*" // Services tools
...