Registering an Environment#
In the previous tutorial, we learned how to create a custom cartpole environment. We manually created an instance of the environment by importing the environment class and its configuration class.
Environment creation in the previous tutorial
# create environment configuration
env_cfg = parse_env_cfg(
"Isaac-Cartpole", device=args_cli.device, num_envs=args_cli.num_envs, overrides=hydra_overrides
)
# setup RL environment
env = ManagerBasedRLEnv(cfg=env_cfg)
While straightforward, this approach is not scalable as we have a large suite of environments.
In this tutorial, we will show how to use the gymnasium.register() method to register
environments with the gymnasium registry. This allows us to create the environment through
the gymnasium.make() function.
Environment creation in this tutorial
# parse configuration via Hydra (supports preset selection, e.g. env.sim.physics=newton_mjwarp)
env_cfg, _ = resolve_task_config(args_cli.task, "")
# override with CLI arguments and reject unsupported configurations before
# launching Kit or initializing a native physics backend.
env_cfg.scene.num_envs = args_cli.num_envs if args_cli.num_envs is not None else env_cfg.scene.num_envs
if args_cli.device is not None:
env_cfg.sim.device = args_cli.device
# Pass the resolved task device through to AppLauncher.
args_cli.device = env_cfg.sim.device
if args_cli.disable_fabric:
env_cfg.sim.use_fabric = False
try:
env_cfg.validate()
except (TypeError, ValueError) as exc:
raise SystemExit(f"Invalid environment configuration: {exc}") from None
with launch_simulation(env_cfg, args_cli):
# create environment
env = gym.make(args_cli.task, cfg=env_cfg)
The Code#
The tutorial corresponds to the random_agent.py script in the scripts/environments directory. The
script is a thin wrapper that calls into the isaaclab_rl.entrypoints module, where the actual
implementation lives.
Code for simple_agents.py
1# Copyright (c) 2022-2026, The Isaac Lab Project Developers (https://github.com/isaac-sim/IsaacLab/blob/main/CONTRIBUTORS.md).
2# All rights reserved.
3#
4# SPDX-License-Identifier: BSD-3-Clause
5
6"""Checkpoint-free playback workflows for Isaac Lab environments.
7
8The zero and random agents are variations of playback that need no trained checkpoint:
9the policy either infers finite zero or hold actions or samples uniform random actions.
10"""
11
12from __future__ import annotations
13
14import argparse
15import contextlib
16import sys
17from collections.abc import Callable
18from typing import Any, Literal
19
20import gymnasium as gym
21import torch
22
23from isaaclab.app import add_launcher_args, launch_simulation
24from isaaclab.envs.utils.spaces import sample_space
25from isaaclab.utils import math as math_utils
26
27import isaaclab_tasks # noqa: F401
28from isaaclab_tasks.utils import (
29 resolve_task_config,
30 setup_preset_cli,
31)
32
33with contextlib.suppress(ImportError):
34 import isaaclab_tasks_experimental # noqa: F401
35
36PolicyName = Literal["zero", "random"]
37"""Action policies supported by the checkpoint-free agents."""
38
39_DESCRIPTIONS: dict[str, str] = {
40 "zero": "Zero agent for Isaac Lab environments.",
41 "random": "Random agent for Isaac Lab environments.",
42}
43
44_SEED = 42
45
46
47def run(argv: list[str] | None = None, *, policy: PolicyName) -> None:
48 """Run an Isaac Lab environment with a checkpoint-free policy.
49
50 Args:
51 argv: Command-line arguments excluding the executable name. Reads ``sys.argv`` when omitted.
52 policy: Action policy to apply, either inferred zero actions or uniform random actions.
53
54 Raises:
55 ValueError: If the requested policy is not supported.
56 """
57 if policy not in _DESCRIPTIONS:
58 raise ValueError(f"Unsupported policy {policy!r}. Expected one of: {sorted(_DESCRIPTIONS)}.")
59
60 args_cli = _parse_args(argv, policy)
61
62 torch.manual_seed(_SEED)
63
64 # parse configuration via Hydra (supports preset selection, e.g. env.sim.physics=newton_mjwarp)
65 env_cfg, _ = resolve_task_config(args_cli.task, "")
66
67 # override with CLI arguments and reject unsupported configurations before
68 # launching Kit or initializing a native physics backend.
69 env_cfg.scene.num_envs = args_cli.num_envs if args_cli.num_envs is not None else env_cfg.scene.num_envs
70 if args_cli.device is not None:
71 env_cfg.sim.device = args_cli.device
72 # Pass the resolved task device through to AppLauncher.
73 args_cli.device = env_cfg.sim.device
74 if args_cli.disable_fabric:
75 env_cfg.sim.use_fabric = False
76 try:
77 env_cfg.validate()
78 except (TypeError, ValueError) as exc:
79 raise SystemExit(f"Invalid environment configuration: {exc}") from None
80
81 with launch_simulation(env_cfg, args_cli):
82 # create environment
83 env = gym.make(args_cli.task, cfg=env_cfg)
84
85 # print info (this is vectorized environment)
86 print(f"[INFO]: Gym observation space: {env.observation_space}")
87 print(f"[INFO]: Gym action space: {env.action_space}")
88 # reset environment
89 env.reset()
90 zero_action_policy = _create_zero_action_policy(env) if policy == "zero" else None
91 if policy == "zero":
92 print("[INFO] Zero agent is running, press Ctrl+C to exit...")
93 else:
94 print("[INFO] Random agent is running, press Ctrl+C to exit...")
95 # simulate environment
96 # keep running while any visualizer is open, and until the step budget is exhausted
97 sim = env.unwrapped.sim
98 device = env.unwrapped.device
99 step = 0
100 while sim.is_headless_or_exist_active_visualizer():
101 if args_cli.max_steps is not None and step >= args_cli.max_steps:
102 break
103 step += 1
104 # run everything in inference mode
105 with torch.inference_mode():
106 if policy == "zero":
107 actions = zero_action_policy()
108 else:
109 # sample actions from -1 to 1
110 actions = 2 * torch.rand(env.action_space.shape, device=device) - 1
111 # apply actions
112 env.step(actions)
113 # close the simulator
114 env.close()
115
116
117def _create_zero_action_policy(env: gym.Env) -> Callable[[], Any]:
118 """Create a policy that emits finite actions for passive environment playback.
119
120 Manager-based environments infer hold commands for absolute task-space action terms and use literal zeros for all
121 other terms. Direct-workflow environments use zero-filled samples of their declared Gymnasium spaces, including
122 composite and multi-agent spaces.
123 """
124 unwrapped = env.unwrapped
125 action_manager = getattr(unwrapped, "action_manager", None)
126 if action_manager is not None:
127 return _create_manager_zero_action_policy(action_manager, unwrapped)
128
129 if hasattr(unwrapped, "action_spaces"):
130 actions = {
131 agent: sample_space(space, unwrapped.device, batch_size=unwrapped.num_envs, fill_value=0)
132 for agent, space in unwrapped.action_spaces.items()
133 }
134 return lambda: actions
135
136 actions = sample_space(unwrapped.single_action_space, unwrapped.device, batch_size=unwrapped.num_envs, fill_value=0)
137 return lambda: actions
138
139
140def _create_manager_zero_action_policy(action_manager: Any, env: Any) -> Callable[[], torch.Tensor]:
141 """Create a zero-action policy from the active action terms."""
142 actions = torch.zeros_like(action_manager.action)
143 term_policies = []
144 index = 0
145 for term_name in action_manager.active_terms:
146 term = action_manager.get_term(term_name)
147 term_policy = _create_action_term_zero_policy(term, env)
148 if term_policy is not None:
149 term_policies.append((slice(index, index + term.action_dim), term_policy))
150 index += term.action_dim
151
152 def policy() -> torch.Tensor:
153 actions.zero_()
154 for action_slice, term_policy in term_policies:
155 actions[:, action_slice] = term_policy()
156 if not torch.isfinite(actions).all():
157 raise RuntimeError("Zero agent inferred non-finite actions from the current environment state.")
158 return actions
159
160 return policy
161
162
163def _create_action_term_zero_policy(term: Any, env: Any) -> Callable[[], torch.Tensor] | None:
164 """Create the specialized zero-action policy required by an action term."""
165 term_types = {cls.__name__ for cls in type(term).__mro__}
166
167 if "PinkInverseKinematicsAction" in term_types:
168 controlled_frame_ids, controlled_frame_names = term._asset.find_bodies(
169 list(term.cfg.target_eef_link_names.values()), preserve_order=True
170 )
171 if len(controlled_frame_ids) != len(term.cfg.target_eef_link_names):
172 raise ValueError(
173 "Expected one controlled body for every Pink IK target. Resolved "
174 f"{controlled_frame_names} from {list(term.cfg.target_eef_link_names.values())}."
175 )
176 if len(controlled_frame_ids) != term._num_frame_tasks:
177 raise ValueError(
178 f"Pink IK has {term._num_frame_tasks} variable frame tasks but "
179 f"{len(controlled_frame_ids)} controlled bodies were configured."
180 )
181
182 def pink_policy() -> torch.Tensor:
183 frame_poses = term._asset.data.body_link_pose_w.torch[:, controlled_frame_ids].clone()
184 frame_poses[..., :3] -= env.scene.env_origins.unsqueeze(1)
185 hand_joint_positions = term._asset.data.joint_pos.torch[:, term._hand_joint_ids]
186 return torch.cat((frame_poses.flatten(start_dim=1), hand_joint_positions), dim=-1)
187
188 return pink_policy
189
190 if "DifferentialInverseKinematicsAction" in term_types and not term.cfg.controller.use_relative_mode:
191
192 def differential_ik_policy() -> torch.Tensor:
193 ee_pos, ee_quat = term._compute_frame_pose()
194 command = ee_pos if term.cfg.controller.command_type == "position" else torch.cat((ee_pos, ee_quat), dim=-1)
195 return _unscale_action(command, term._scale)
196
197 return differential_ik_policy
198
199 if "RMPFlowAction" in term_types and not term.cfg.use_relative_mode:
200
201 def rmpflow_policy() -> torch.Tensor:
202 ee_pos, ee_quat = term._compute_frame_pose()
203 return _unscale_action(torch.cat((ee_pos, ee_quat), dim=-1), term._scale)
204
205 return rmpflow_policy
206
207 if "OperationalSpaceControllerAction" in term_types and term._pose_abs_idx is not None:
208 term_actions = torch.zeros_like(term.raw_actions)
209
210 def operational_space_policy() -> torch.Tensor:
211 term_actions.zero_()
212 term._compute_ee_pose()
213 term._compute_task_frame_pose()
214 if term._task_frame_pose_b is None:
215 ee_pos_task = term._ee_pose_b[:, :3]
216 ee_quat_task = term._ee_pose_b[:, 3:7]
217 else:
218 ee_pos_task, ee_quat_task = math_utils.subtract_frame_transforms(
219 term._task_frame_pose_b[:, :3],
220 term._task_frame_pose_b[:, 3:7],
221 term._ee_pose_b[:, :3],
222 term._ee_pose_b[:, 3:7],
223 )
224 term_actions[:, term._pose_abs_idx : term._pose_abs_idx + 3] = _unscale_action(
225 ee_pos_task, term._position_scale
226 )
227 term_actions[:, term._pose_abs_idx + 3 : term._pose_abs_idx + 7] = _unscale_action(
228 ee_quat_task, term._orientation_scale
229 )
230 return term_actions
231
232 return operational_space_policy
233
234 return None
235
236
237def _unscale_action(command: torch.Tensor, scale: torch.Tensor) -> torch.Tensor:
238 """Map a processed command back to policy-action coordinates without division by zero."""
239 return torch.where(scale != 0.0, command / scale, torch.zeros_like(command))
240
241
242def _parse_args(argv: list[str] | None, policy: PolicyName) -> argparse.Namespace:
243 """Parse the command line of a checkpoint-free agent and hand the remainder to Hydra."""
244 parser = argparse.ArgumentParser(description=_DESCRIPTIONS[policy])
245 parser.add_argument(
246 "--disable_fabric", action="store_true", default=False, help="Disable fabric and use USD I/O operations."
247 )
248 parser.add_argument("--num_envs", type=int, default=None, help="Number of environments to simulate.")
249 parser.add_argument("--task", type=str, default=None, help="Name of the task.")
250 parser.add_argument(
251 "--max_steps", type=int, default=None, help="Number of environment steps to run. Runs unbounded when omitted."
252 )
253 # append AppLauncher cli args
254 add_launcher_args(parser)
255 # Let task configs select the simulation device and keep checkpoint-free agents on the kitless default path.
256 parser.set_defaults(device=None, visualizer=["newton_gl"])
257 args_cli, hydra_args = setup_preset_cli(parser, argv)
258 sys.argv = [sys.argv[0]] + hydra_args
259 return args_cli
The Code Explained#
The envs.ManagerBasedRLEnv class inherits from the gymnasium.Env class to follow
a standard interface. However, unlike the traditional Gym environments, the envs.ManagerBasedRLEnv
implements a vectorized environment. This means that multiple environment instances
are running simultaneously in the same process, and all the data is returned in a batched
fashion.
Similarly, the envs.DirectRLEnv class also inherits from the gymnasium.Env class
for the direct workflow. For envs.DirectMARLEnv, although it does not inherit
from Gymnasium, it can be registered and created in the same way.
Using the gym registry#
To register an environment, we use the gymnasium.register() method. This method takes
in the environment name, the entry point to the environment class, and the entry point to the
environment configuration class.
Note
The gymnasium registry is a global registry. Hence, it is important to ensure that the
environment names are unique. Otherwise, the registry will throw an error when registering
the environment.
Manager-Based Environments#
For manager-based environments, the following shows the registration
call for the cartpole environment in the isaaclab_tasks.core.cartpole sub-package:
import gymnasium as gym
from . import agents
"rsl_rl_cfg_entry_point": f"{agents.__name__}.rsl_rl_ppo_cfg:CartpolePPORunnerCfg",
"default_agent": "rsl_rl",
"rsl_rl_with_symmetry_cfg_entry_point": (
f"{agents.__name__}.rsl_rl_ppo_cfg:CartpolePPORunnerWithSymmetryCfg"
),
"skrl_cfg_entry_point": f"{agents.__name__}:skrl_manager_ppo_cfg.yaml",
"sb3_cfg_entry_point": f"{agents.__name__}:sb3_ppo_cfg.yaml",
},
)
gym.register(
id="Isaac-Cartpole-Camera",
entry_point="isaaclab.envs:ManagerBasedRLEnv",
disable_env_checker=True,
kwargs={
The id argument is the name of the environment. As a convention, we name all the environments
with the prefix Isaac- to make it easier to search for them in the registry. The name of the
environment is typically followed by the name of the task, and then the name of the robot.
For instance, for legged locomotion with ANYmal C on flat terrain, the environment is called
IsaacContrib-Velocity-Flat-AnymalC. The version number v<N> is typically used to specify different
variations of the same environment. Otherwise, the names of the environments can become too long
and difficult to read.
The entry_point argument is the entry point to the environment class. The entry point is a string
of the form <module>:<class>. In the case of the cartpole environment, the entry point is
isaaclab.envs:ManagerBasedRLEnv. The entry point is used to import the environment class
when creating the environment instance.
The env_cfg_entry_point argument specifies the default configuration for the environment. The default
configuration is loaded using the isaaclab_tasks.utils.parse_env_cfg() function.
It is then passed to the gymnasium.make() function to create the environment instance.
The configuration entry point can be both a YAML file or a python configuration class.
Direct Environments#
For direct-based environments, the environment registration follows a similar pattern. Instead of
registering the environment’s entry point as the ManagerBasedRLEnv class,
we register the environment’s entry point as the implementation class of the environment.
Additionally, we add the suffix -Direct to the environment name to differentiate it from the
manager-based environments.
As an example, the following shows the registration call for the cartpole environment in the
isaaclab_tasks.core.cartpole sub-package:
import gymnasium as gym
from . import agents
"sb3_cfg_entry_point": f"{agents.__name__}:sb3_ppo_cfg.yaml",
},
)
gym.register(
id="Isaac-Cartpole-Camera-Direct",
entry_point=f"{__name__}.cartpole_direct_camera_env:CartpoleCameraEnv",
disable_env_checker=True,
kwargs={
"env_cfg_entry_point": f"{__name__}.cartpole_direct_camera_env_cfg:CartpoleCameraEnvCfg",
"rl_games_cfg_entry_point": f"{agents.__name__}:rl_games_camera_ppo_cfg.yaml",
"rsl_rl_cfg_entry_point": f"{agents.__name__}.rsl_rl_ppo_cfg:CartpoleCameraDirectPPORunnerCfg",
Creating the environment#
To inform the gym registry with all the environments provided by the isaaclab_tasks
extension, we must import the module at the start of the script. This will execute the __init__.py
file which iterates over all the sub-packages and registers their respective environments.
import isaaclab_tasks # noqa: F401
In this tutorial, the task name is read from the command line. The task name is used to parse the default configuration as well as to create the environment instance. In addition, other parsed command line arguments such as the number of environments, the simulation device, and whether to render, are used to override the default configuration.
# parse configuration via Hydra (supports preset selection, e.g. env.sim.physics=newton_mjwarp)
env_cfg, _ = resolve_task_config(args_cli.task, "")
# override with CLI arguments and reject unsupported configurations before
# launching Kit or initializing a native physics backend.
env_cfg.scene.num_envs = args_cli.num_envs if args_cli.num_envs is not None else env_cfg.scene.num_envs
if args_cli.device is not None:
env_cfg.sim.device = args_cli.device
# Pass the resolved task device through to AppLauncher.
args_cli.device = env_cfg.sim.device
if args_cli.disable_fabric:
env_cfg.sim.use_fabric = False
try:
env_cfg.validate()
except (TypeError, ValueError) as exc:
raise SystemExit(f"Invalid environment configuration: {exc}") from None
with launch_simulation(env_cfg, args_cli):
# create environment
env = gym.make(args_cli.task, cfg=env_cfg)
Once creating the environment, the rest of the execution follows the standard resetting and stepping.
The Code Execution#
Now that we have gone through the code, let’s run the script and see the result:
uv run python scripts/environments/random_agent.py --task Isaac-Cartpole --num_envs 32 --viz kit
./isaaclab.sh -p scripts/environments/random_agent.py --task Isaac-Cartpole --num_envs 32 --viz kit
This should open a stage with everything similar to the Creating a Manager-Based RL Environment tutorial.
To stop the simulation, you can either close the window, or press Ctrl+C in the terminal.
In addition, you can also change the simulation device from GPU to CPU by setting the value of the --device flag explicitly:
uv run python scripts/environments/random_agent.py --task Isaac-Cartpole --num_envs 32 --device cpu --viz kit
./isaaclab.sh -p scripts/environments/random_agent.py --task Isaac-Cartpole --num_envs 32 --device cpu --viz kit
With the --device cpu flag, the simulation will run on the CPU. This is useful for debugging the simulation.
However, the simulation will run much slower than on the GPU.