🛠️ Install Python SDK#
Installation Requirements#
Python Version: <3.14,>=3.10
Python Version
Support Status
≤ 3.9
❌
3.10 ~ 3.13
✅
≥ 3.14
❌
Package Manager: pip 23.0+ (It is recommended to use project management tools such as uv, pdm, or poetry)
System & Architecture:
Windows(x86_64)
Linux(x86_64)
MacOS(aarch64)
Note
Supported features by platform:
Operating System
CPU Simulation
Interactive Viewer
GPU Simulation
Linux
✅
✅
🛠️ In Development
Windows
✅
✅
🛠️ In Development
MacOS
✅
✅
🛠️ In Development
Note
On MacOS (aarch64-apple-darwin) platform, when using 🎨 Renderer related features, you need to use the following command format:
uv run mxpython your_script.py
This is required due to the specificity of RenderApp on MacOS ARM64 platform. Using
uv run mxpythonensures correct loading of rendering-related dependencies and execution environment.Important Notes:
If your code uses 🎨 Renderer, you need to use
uv run mxpythonIf your code does not use RenderApp (e.g., physics simulation only without a rendering window), use
uv runwhich is consistent with Windows and Linux platforms
Installation Methods#
pip install motrixsim
uv add motrixsim
pdm add motrixsim
poetry add motrixsim
Verify Installation#
pip show motrixsim
uv pip list | grep motrixsim
pdm list | grep motrixsim
poetry show | grep motrixsim