SO101-Nexus
Environments

Environment Reference

Complete reference for all registered simulation environments.

Environment Reference

SO101-Nexus provides Gymnasium-compatible MuJoCo environments for the SO-101 arm. Each environment is registered with a unique ID and can be created with gym.make().

All Environments

IDBackendTaskMax Steps
MuJoCoPickLift-v1MuJoCoPick and lift an object1024
MuJoCoPickAndPlace-v1MuJoCoPick a cube and place on target1024
MuJoCoTouch-v1MuJoCoTouch an object on the table512
MuJoCoLookAt-v1MuJoCoOrient TCP toward object256
MuJoCoMove-v1MuJoCoMove TCP in a direction256

Registration

MuJoCo environments are registered when you import so101_nexus.mujoco.

import gymnasium as gym
import so101_nexus.mujoco

env = gym.make("MuJoCoPickLift-v1")

On this page