pybullet-helpers
Some utility functions for PyBullet. Copied and modified from predicators, which in turn was heavily based on the pybullet-planning repository by Caelan Garrett (https://github.com/caelan/pybullet-planning/). In addition, the structure is loosely based off the pb_robot repository by Rachel Holladay (https://github.com/rachelholladay/pb_robot). Will Shen made huge contributions.
Requirements
- Python 3.10+
- Tested on MacOS Catalina
Installation
We strongly recommend uv. The steps below assume that you have uv installed. If you do not, just remove uv from the commands and the installation should still work.
# Install PRPL dependencies.
uv pip install -r prpl_requirements.txt
# Install this package and third-party dependencies.
uv pip install -e ".[develop]"
Check Installation
Run ./run_ci_checks.sh. It should complete with all green successes in 5-10 seconds.
Adding New Robots
To add a new robot, build off an existing example. For inverse kinematics, PyBullet's IK solver will be used by default. It is not very good. IKFast is much better, but then you need to compile robot-specific IK models. This process needs to be automated further, but here is some guidance:
- Install Docker on an Ubuntu machine. (You will only need Ubuntu to compile once; IKFast should work cross-platform.)
- Follow the instructions on pyikfast.
- Prepare a stripped URDF that contains only the arm chain you want IK for, rooted at the IK base link, with all
<visual>and<collision>blocks removed (collada_urdf inside the container will otherwise try to load mesh files that may not be present). - For 7-DOF arms, the pyikfast default may pick the shoulder joint as the free joint, which usually fails to solve. Override by running the container with the entrypoint replaced by a script that passes
--freejoint=<wrist_joint_name>toopenrave.py --database inversekinematics. The panda convention is to free the last joint (e.g.panda_joint7). - IKFast cannot generate closed-form 6D IK for arms without a spherical wrist (three intersecting axes) or three parallel axes — the symbolic engine fails to invert the resulting matrices regardless of free-joint choice. Many research humanoid arms fall in this category; see the Dexmate Vega section below for what we use instead.
- Prepare a stripped URDF that contains only the arm chain you want IK for, rooted at the IK base link, with all
- Save the
cppfile that is generated. You won't need the other files. - Make a new directory in this repository inside
third_party/ikfast. Copy in thecppfile and rename it to match the existing examples (e.g.,ikfast_panda_arm.cpp.) - Modify the
cppfile in two ways: (1) Add#include "Python.h"at the top; (2) add python bindings at the bottom (copy and change the robot name from an existing example likeikfast_panda_arm.cpp). - Copy in the other files from an example directory like
third_party/ikfast/panda_arm. Modifyrobot_nameinsetup.py. - Add
IKInfoinside your new robot class inrobots/.
Contributions are welcome to improve this process, especially steps 3 onward.
*Note for Robot URDFs: For consistency with Bullet IK, ensure that the inertial frame of the robot URDF's base link is not offset from the its link frame. If that's necessary, a possible workaround is to add a dummy base link to the URDF and connecting this to the real base link via a fixed joint.
<link name="dummy_base" />
<joint name="dummy_joint" type="fixed">
<parent link="dummy_base"/>
<child link="panda_link0"/>
<origin xyz="0 0 0" rpy="0 0 0"/>
</joint>
Dexmate Vega 1U
The Vega 1U arms have no spherical wrist, so there is no closed-form 6D IK for them. They use a hybrid analytic IK built on EAIK, which is an optional dependency:
# macOS:
brew install eigen
# Debian/Ubuntu:
sudo apt install libeigen3-dev
# Then, from the pybullet-helpers directory:
uv pip install -e ".[dexmate-vega]"
eaik is published to PyPI as an sdist only — pip will compile it from C++ during install (~15 s), which requires a C++ toolchain and the Eigen3 headers. Without eaik installed, the Vega robot falls back to pybullet's iterative IK (lower quality) and emits a one-time RuntimeWarning pointing back to these instructions.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
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 pybullet_helpers-0.1.2.tar.gz.
File metadata
- Download URL: pybullet_helpers-0.1.2.tar.gz
- Upload date:
- Size: 94.8 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
64d9777ae8a4d1b4a43612bc3807fb6718bb4d35e8b775ff686642237858bc6d
|
|
| MD5 |
97956537e94385ce43594b32301ab32b
|
|
| BLAKE2b-256 |
0ae4c9132d45bef75955c09d234036a98a0d4a928341e3ea3c53f665b0d21c75
|
File details
Details for the file pybullet_helpers-0.1.2-py3-none-any.whl.
File metadata
- Download URL: pybullet_helpers-0.1.2-py3-none-any.whl
- Upload date:
- Size: 95.2 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c5ecc0eb80e09e78d75e66c3a17ef88dab9c63e3a18a2fc268231248facd7054
|
|
| MD5 |
6bf298571893bdf52dc2d03d39b8d848
|
|
| BLAKE2b-256 |
aa1429a80a091dccb01e99636f11044faf090249f37051678bc791335e9f2678
|