安装
- Python 3.10+
- pip(或 uv 以获得更快的安装速度)
状态:
threeweSDK 正在积极开发中。pip install threewe尚未在 PyPI 上发布。请从源码安装:
git clone https://github.com/telleroutlook/3we-robot-platform.gitcd 3we-robot-platformpip install -e sdk/threewe/mock 后端可以立即工作——无需 ROS2 或 Gazebo:
import asynciofrom threewe import Robot
async def main(): async with Robot(backend="mock") as robot: image = robot.get_image() await robot.move_to(x=2.0, y=1.0) pose = robot.get_pose() print(f"Robot at: ({pose.x:.2f}, {pose.y:.2f})")
asyncio.run(main())| 如果你是… | 从这里开始 |
|---|---|
| AI/ML 研究员 | 第一个机器人 — Gymnasium 环境、VLM/VLA、轨迹记录 |
| 机器人学学生 | 组装指南 — 从 PCB 到 Python 的全栈 |
| RL 从业者 | 仿真 — gym.make("3we/Navigation-v1") |
| 硬件构建者 | 物料清单 — 开放 BOM,CERN-OHL-P 许可 |