gobot
Gobot is a Linux robotics simulation package with a Python-first workflow. Use it from Python to create scenes, step simulation, inspect robot state, and drive reinforcement-learning experiments.
Install
Gobot publishes full-featured Linux x86_64 wheels for NVIDIA GPU systems. The default install includes CPU simulation, MuJoCo Warp, Newton, PyTorch and CUDA user-space dependencies, the LuisaCompute renderer, Gaussian Splatting inference, and the bundled OpenUSD importer/runtime. There are no feature extras to select.
pip install gobot -i https://pypi.org/simple
Check the install:
import gobot
print(gobot.__file__)
print(gobot.__version__)
print(gobot.backend_infos())
Python Usage
Set a project root before using res:// paths:
import gobot
gobot.set_project_path("/path/to/project")
scene = gobot.load_scene("res://world.jscn")
print(scene.root.name)
Editor
Start the editor from the Python environment you want Gobot to use:
gobot_editor
For source checkout development:
cd /path/to/gobot
uv run gobot_editor --path examples/go1
The first uv run initializes the required Git submodules and builds the
cached LuisaCompute, gsplat, and OpenUSD SDKs before installing Gobot editable.
It requires the source-build toolchain, including a CUDA toolkit with nvcc.
Later runs are incremental. Python files import directly from the checkout,
while _core, libgobot, and gobot_editor come from the same build installed
in .venv. The editable gobot_editor launcher runs an incremental CMake/Ninja
rebuild before every start, so changed C++ and CMake files cannot silently leave
the editor on stale native binaries. If the initial editable install was
configured inside uv's temporary build isolation environment, the launcher
repairs that persistent CMake cache with the current virtual environment before
its first incremental rebuild.
When native changes must be used by another Python entry point, rebuild and reinstall only Gobot explicitly:
uv sync --reinstall-package gobot --no-build-isolation-package gobot
The initial uv sync installs the build backend in .venv; disabling build
isolation on later native rebuilds prevents CMake from caching a temporary
build environment's Python executable.
Python-only edits need no rebuild. Do not add PYTHONPATH or launch an editor
from build/python; that can combine source files, native extensions, and
executables from different builds. The package launcher selects the native
artifacts installed in its own environment.
uv run is environment activation, not a separate Gobot runtime. These are
equivalent after uv sync:
uv run gobot_editor --path examples/go1
.venv/bin/gobot_editor --path examples/go1
Alternatively, run source .venv/bin/activate once and then use
gobot_editor or python directly. At runtime,
GOBOT_PYTHON_LIBRARY=/other/libpython.so still overrides automatic
libpython discovery.
For a standalone CMake build used by C++ tests, use a separate build directory
and the Python selected by uv:
cmake -S . -B build/dev -DPython3_EXECUTABLE="$(uv python find)"
cmake --build build/dev -j
ctest --test-dir build/dev --output-on-failure
Python CTest cases run against build/dev/python in an isolated interpreter,
so an older editable _core in .venv cannot shadow the artifact under test.
That standalone build is not the artifact used by the .venv console script;
run the following command when the installed editor must be updated:
uv sync --reinstall-package gobot --no-build-isolation-package gobot
The default Linux x86-64 environment includes ONNX Runtime, PyTorch, rsl_rl, MuJoCo Warp, Newton, training logs, video capture, and ONNX export support. There are no separate CPU, CUDA, or training extras. Selecting a simulation provider remains explicit; requesting a CUDA provider never silently falls back to CPU.
OpenUSD remains an optional CMake feature, but Python source builds enable it by
default. Official Linux x86-64 wheels bundle the runtime, so
pip install gobot does not need OpenUSD, LuisaCompute, or oneTBB checkouts and
does not compile them on the user's computer. Source builds use pinned, shallow
submodules under 3rdparty; the PEP 517 backend initializes and builds them
automatically. The explicit CMake workflow remains available for SDK work:
git submodule update --init --depth=1 3rdparty/openusd 3rdparty/onetbb
cmake --workflow --preset dependencies-openusd
cmake -S . -B build/openusd-dev \
-DGOB_BUILD_OPENUSD=ON \
-DGOB_OPENUSD_ROOT="$PWD/build/openusd/install"
cmake --build build/openusd-dev -j
The importer maps USD hierarchy, stage units/up-axis, transforms, visibility,
render-purpose polygon meshes, normals, UVs, and constant UsdPreviewSurface
material inputs into Gobot PackedScene data. OpenUSD-enabled installs bundle
their native runtime under gobot/openusd. See
Newton and OpenUSD integration for the data boundary
and provider example.
Run the Gobot-rendered Newton G1 policy example through uv:
uv run gobot_editor --path examples/newton_g1
Its project hook downloads the pinned official g1_isaac.usd and policy files,
verifies them, and caches the USD as one Gobot Robot3D scene before opening.
Run Go1 rough-terrain training on MuJoCo Warp through uv:
uv run \
python -m examples.go1.train.go1_velocity_train \
--backend mujoco-warp \
--device cuda:0 \
--num-envs 256 \
--iterations 10000 \
--no-step-extras
Select the CPU semantic baseline explicitly when CUDA is not desired:
uv run \
python -m examples.go1.train.go1_velocity_train \
--backend mujoco-cpu \
--device cpu \
--num-envs 64 \
--iterations 10000
Packaged examples are available from the editor start screen under Examples.
See doc/examples.md for packaging details.
Examples
| Example | Preview |
|---|---|
| CartPole | |
| Go1 policy playback |
Local Wheel Build
From a source checkout:
git clone https://github.com/RobSimulatorGroup/gobot.git
cd gobot
uv run --with build python -m build --wheel
uv pip install --force-reinstall dist/gobot-*.whl
The PEP 517 backend initializes the pinned submodules and incrementally builds all native SDKs. A complete Git checkout is required for source builds; install the published wheel when the dependency sources or native build toolchain are not available.
Notes
- Supported platform: Linux.
- Python package name:
gobot. - Release wheels install MuJoCo CPU, MuJoCo Warp, Newton, LuisaCompute, Gaussian Splatting inference, and OpenUSD support by default. The Python GPU providers remain behind Gobot's backend-neutral simulation boundary.
- A system CUDA Toolkit is needed to build from source, but not to use a wheel.
Wheel users need a compatible NVIDIA driver providing
libcuda.so.1and the system libglvnd EGL/OpenGL dispatch libraries. Driver libraries are not copied into the wheel because they must match the target machine's driver. - Packaged examples:
gobot/examples/in wheels andexamples/in source. - MuJoCo RL roadmap:
doc/mujoco_rl_plan.md. - Luisa CUDA renderer architecture and build guide:
doc/luisa_rendering_plan.md. - Gaussian Splatting environment assets and inference runtime:
doc/gaussian_splatting.md.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file gobot-0.1.18-cp314-cp314-manylinux_2_35_x86_64.whl.
File metadata
- Download URL: gobot-0.1.18-cp314-cp314-manylinux_2_35_x86_64.whl
- Upload date:
- Size: 84.2 MB
- Tags: CPython 3.14, manylinux: glibc 2.35+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2974143347eb2369254d90fd3582748f03d3d651bbcb36365443603055a01abd
|
|
| MD5 |
7ee0b037c6617ec83a7439518ad18a2e
|
|
| BLAKE2b-256 |
85235d07dcf351c853f50951c765086caea7581e6614d10f1c85dd71ea2b5a2b
|
Provenance
The following attestation bundles were made for gobot-0.1.18-cp314-cp314-manylinux_2_35_x86_64.whl:
Publisher:
python-publish.yml on RobSimulatorGroup/gobot
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
gobot-0.1.18-cp314-cp314-manylinux_2_35_x86_64.whl -
Subject digest:
2974143347eb2369254d90fd3582748f03d3d651bbcb36365443603055a01abd - Sigstore transparency entry: 2331847577
- Sigstore integration time:
-
Permalink:
RobSimulatorGroup/gobot@ef3859063df0ac0fc43f03f64a29b35402e08db5 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/RobSimulatorGroup
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@ef3859063df0ac0fc43f03f64a29b35402e08db5 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file gobot-0.1.18-cp313-cp313-manylinux_2_35_x86_64.whl.
File metadata
- Download URL: gobot-0.1.18-cp313-cp313-manylinux_2_35_x86_64.whl
- Upload date:
- Size: 84.2 MB
- Tags: CPython 3.13, manylinux: glibc 2.35+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2575797ca4d08a84573bcdb13011af065816b80907e91f07f8f3410591fe5e90
|
|
| MD5 |
092cc156dc13291d5b74ed45adea43dd
|
|
| BLAKE2b-256 |
04061765f674a948db17ceb28c8f5600ac701abd1030dd442d8b3b48a8009643
|
Provenance
The following attestation bundles were made for gobot-0.1.18-cp313-cp313-manylinux_2_35_x86_64.whl:
Publisher:
python-publish.yml on RobSimulatorGroup/gobot
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
gobot-0.1.18-cp313-cp313-manylinux_2_35_x86_64.whl -
Subject digest:
2575797ca4d08a84573bcdb13011af065816b80907e91f07f8f3410591fe5e90 - Sigstore transparency entry: 2331847530
- Sigstore integration time:
-
Permalink:
RobSimulatorGroup/gobot@ef3859063df0ac0fc43f03f64a29b35402e08db5 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/RobSimulatorGroup
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@ef3859063df0ac0fc43f03f64a29b35402e08db5 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file gobot-0.1.18-cp312-cp312-manylinux_2_35_x86_64.whl.
File metadata
- Download URL: gobot-0.1.18-cp312-cp312-manylinux_2_35_x86_64.whl
- Upload date:
- Size: 84.2 MB
- Tags: CPython 3.12, manylinux: glibc 2.35+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3df14ced3adb907d547fb75d800347cfbd9ce9a1aa7e22b98b6190faaf9d0096
|
|
| MD5 |
8b26cc158a92a8a635970635970200e4
|
|
| BLAKE2b-256 |
c32b02fb4d49c3654e1b3880f85e19b0465fceca0027ac8d5ae63f36e4cfe712
|
Provenance
The following attestation bundles were made for gobot-0.1.18-cp312-cp312-manylinux_2_35_x86_64.whl:
Publisher:
python-publish.yml on RobSimulatorGroup/gobot
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
gobot-0.1.18-cp312-cp312-manylinux_2_35_x86_64.whl -
Subject digest:
3df14ced3adb907d547fb75d800347cfbd9ce9a1aa7e22b98b6190faaf9d0096 - Sigstore transparency entry: 2331847470
- Sigstore integration time:
-
Permalink:
RobSimulatorGroup/gobot@ef3859063df0ac0fc43f03f64a29b35402e08db5 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/RobSimulatorGroup
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@ef3859063df0ac0fc43f03f64a29b35402e08db5 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file gobot-0.1.18-cp311-cp311-manylinux_2_35_x86_64.whl.
File metadata
- Download URL: gobot-0.1.18-cp311-cp311-manylinux_2_35_x86_64.whl
- Upload date:
- Size: 84.2 MB
- Tags: CPython 3.11, manylinux: glibc 2.35+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
09e8010933b54e545a1258984fbf504ca1d1047aa25ea00f66071f9b16d0dfa8
|
|
| MD5 |
6295739bc0ad1daed48ec1ba29da9c8c
|
|
| BLAKE2b-256 |
1ad7abeec357881ac04b1edaa9fdf0b0725656cd995ecae6c1aadcfdfe0db8bf
|
Provenance
The following attestation bundles were made for gobot-0.1.18-cp311-cp311-manylinux_2_35_x86_64.whl:
Publisher:
python-publish.yml on RobSimulatorGroup/gobot
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
gobot-0.1.18-cp311-cp311-manylinux_2_35_x86_64.whl -
Subject digest:
09e8010933b54e545a1258984fbf504ca1d1047aa25ea00f66071f9b16d0dfa8 - Sigstore transparency entry: 2331847387
- Sigstore integration time:
-
Permalink:
RobSimulatorGroup/gobot@ef3859063df0ac0fc43f03f64a29b35402e08db5 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/RobSimulatorGroup
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@ef3859063df0ac0fc43f03f64a29b35402e08db5 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file gobot-0.1.18-cp310-cp310-manylinux_2_35_x86_64.whl.
File metadata
- Download URL: gobot-0.1.18-cp310-cp310-manylinux_2_35_x86_64.whl
- Upload date:
- Size: 84.2 MB
- Tags: CPython 3.10, manylinux: glibc 2.35+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9c0fb7e0d795f72ec027208ccc157a45723a9bda133cb2108be60d2cef627529
|
|
| MD5 |
35ca318917f3318c22abe0470c1f9ac2
|
|
| BLAKE2b-256 |
6527750d757d864574eb1e3896a54cdb9ff1f8084bef97f5bd034e3b940f6410
|
Provenance
The following attestation bundles were made for gobot-0.1.18-cp310-cp310-manylinux_2_35_x86_64.whl:
Publisher:
python-publish.yml on RobSimulatorGroup/gobot
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
gobot-0.1.18-cp310-cp310-manylinux_2_35_x86_64.whl -
Subject digest:
9c0fb7e0d795f72ec027208ccc157a45723a9bda133cb2108be60d2cef627529 - Sigstore transparency entry: 2331847429
- Sigstore integration time:
-
Permalink:
RobSimulatorGroup/gobot@ef3859063df0ac0fc43f03f64a29b35402e08db5 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/RobSimulatorGroup
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@ef3859063df0ac0fc43f03f64a29b35402e08db5 -
Trigger Event:
workflow_dispatch
-
Statement type: