Skip to main content

IKPy

PyPI

DOI

demo

IKPy on the baxter robot

Demo

Live demos of what IKPy can do (click on the image below to see the video):

Also, a presentation of IKPy: Presentation.

Features

With IKPy, you can:

  • Compute the Inverse Kinematics of every existing robot.
  • Compute the Inverse Kinematics in position, orientation, or both
  • Define your kinematic chain using arbitrary representations: DH (Denavit–Hartenberg), URDF, custom...
  • Automatically import a kinematic chain from a URDF file or a MuJoCo MJCF file.
  • Support for arbitrary joint types: revolute, prismatic and more to come in the future
  • Use pre-configured robots, such as baxter or the poppy-torso
  • IKPy is precise (up to 7 digits): the only limitation being your underlying model's precision, and fast: from 7 ms to 50 ms (depending on your precision) for a complete IK computation.
  • Plot your kinematic chain: no need to use a real robot (or a simulator) to test your algorithms!
  • Define your own Inverse Kinematics methods.
  • Utils to parse and analyze URDF files:

Moreover, IKPy is a pure-Python library: the install is a matter of seconds, and no compiling is required.

JAX Backend (Experimental)

IKPy now includes an optional JAX backend for accelerated inverse kinematics using automatic differentiation.

Benefits

Scenario Speedup vs NumPy
Single target (complex chains) 1.5-4x faster
Trajectory tracking (warm start) 2-3x faster
Cold start More robust (fewer local minima)

The JAX backend uses an analytical Jacobian computed via autodiff, which provides:

  • Faster convergence on difficult targets
  • Better robustness against local minima
  • Significant speedup on robots with 5+ joints

Installation

pip install 'ikpy[jax]'

Usage

from ikpy.chain import Chain

# Load your robot
chain = Chain.from_urdf_file("my_robot.urdf")

# Use JAX backend for IK
result = chain.inverse_kinematics(
    target_position=[0.5, 0.2, 0.3],
    backend="jax"  # Use JAX instead of NumPy
)

# Trajectory tracking with warm start (recommended)
current_joints = None
for target in trajectory:
    result = chain.inverse_kinematics(
        target_position=target,
        initial_position=current_joints,
        backend="jax"
    )
    current_joints = result  # Use solution as next initial guess

Configuration

Two arguments bound the work of the optimizer, and they mean the same thing whichever backend and whichever optimizer you use:

chain.inverse_kinematics(
    target_position=target,
    optimizer_budget=10,  # Approximate number of evaluations allowed
    tol=1e-4,             # Convergence tolerance
)

optimizer_budget is a budget rather than a hard cap: an optimizer finishing a gradient estimation can overshoot it slightly. Use it to trade accuracy for speed in real-time loops.

Everything else goes through optimizer_kwargs, forwarded as-is to the SciPy optimizer in use (scipy.optimize.least_squares by default, scipy.optimize.minimize for optimizer="scalar"):

chain.inverse_kinematics(target_position=target, optimizer_kwargs={"loss": "soft_l1"})

The bounds are derived from the limits of the links, so they cannot be set there, and neither can an option that optimizer_budget or tol is already setting.

The JAX backend uses scipy.optimize.least_squares with an analytical Jacobian, and takes a few options of its own on top:

chain.inverse_kinematics(
    target_position=target,
    backend="jax",
    optimizer_budget=10,           # Same argument as above
    scipy_method='trf',            # 'trf', 'dogbox', or 'lm'
    scipy_x_scale='jac',           # Auto-scaling (default, recommended)
    use_analytical_jacobian=True,  # Set False for finite differences
)

When to use JAX vs NumPy

Use Case Recommended Backend
Simple chains (≤4 joints), easy targets NumPy
Complex chains (≥5 joints) JAX
Trajectory tracking JAX
Real-time control JAX (after warmup)
One-off calculations NumPy (no compilation overhead)

Note: The first JAX call includes JIT compilation overhead (~1-5s). Subsequent calls are fast.

MuJoCo (MJCF) Support

In addition to URDF, IKPy can import kinematic chains directly from MuJoCo MJCF XML files:

from ikpy.chain import Chain

chain = Chain.from_mjcf_file("ur5e.xml", base_elements=["base"])

The parser supports MuJoCo compiler settings, default classes (including childclass inheritance), and provides helpers to inspect models (ikpy.mjcf.get_body_names, ikpy.mjcf.get_joint_names).

Installation

You have three options:

  1. From PyPI (recommended) - simply run:

    pip install ikpy
    

    If you intend to plot your robot, you can install the plotting dependencies (mainly matplotlib):

    pip install 'ikpy[plot]'
    

    If you want to use the JAX backend, install the JAX dependencies:

    pip install 'ikpy[jax]'
    
  2. From source - first download and extract the archive, then run:

    pip install ./
    

    NB: You must have the proper rights to execute this command

Quickstart

Follow this IPython notebook.

Guides and Tutorials

Go to the wiki. It should introduce you to the basic concepts of IKPy.

API Documentation

An extensive documentation of the API can be found here.

Dependencies and compatibility

Starting with IKPy v4, Python 3.10 or above is required. Starting with IKPy v3.1, only Python 3 is supported. For versions before v3.1, the library can work with both versions of Python (2.7 and 3.x).

In terms of dependencies, it requires numpy and scipy.

sympy is highly recommended, for fast hybrid computations, that's why it is installed by default.

matplotlib is optional: it is used to plot your models (in 3D).

Contributing

IKPy is designed to be easily customisable: you can add your own IK methods or robot representations (such as DH-Parameters) using a dedicated developer API.

Contributions are welcome: if you have an awesome patented (but also open-source!) IK method, don't hesitate to propose adding it to the library!

Links

  • If performance is your main concern, aversive++ has an inverse kinematics module written in C++, which works the same way IKPy does.

Citation

If you use IKPy as part of a publication, please use the Bibtex below as a citation:

@software{Manceron_IKPy,
author = {Manceron, Pierre},
doi = {10.5281/zenodo.6551105},
license = {Apache-2.0},
title = {{IKPy}},
url = {https://github.com/Phylliade/ikpy}
}

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ikpy-4.1.0.tar.gz (50.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

ikpy-4.1.0-py3-none-any.whl (43.2 kB view details)

Uploaded Python 3

File details

Details for the file ikpy-4.1.0.tar.gz.

File metadata

  • Download URL: ikpy-4.1.0.tar.gz
  • Upload date:
  • Size: 50.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for ikpy-4.1.0.tar.gz
Algorithm Hash digest
SHA256 be85d70b4d3e9f12097243a9e9c0a61b8c840a15f7c7a47d240c4573f663b231
MD5 8639421daa90d5ae61de0ea26fdd252d
BLAKE2b-256 6fc9e21ea8ad213834427115ef9346e4e75c3a58cc36940c5aa3698691561787

See more details on using hashes here.

Provenance

The following attestation bundles were made for ikpy-4.1.0.tar.gz:

Publisher: ci.yml on Phylliade/ikpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ikpy-4.1.0-py3-none-any.whl.

File metadata

  • Download URL: ikpy-4.1.0-py3-none-any.whl
  • Upload date:
  • Size: 43.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for ikpy-4.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 2fd829a138c55d096d458e5b88ad8c81c0d5ce15d4f9c9a637eaa3c743de8962
MD5 e031c66b2aa62778841d8e45c34ade7b
BLAKE2b-256 2d48aef63cb591250d8aaace82815393b318d5b3c05af23e134faebf49ce2858

See more details on using hashes here.

Provenance

The following attestation bundles were made for ikpy-4.1.0-py3-none-any.whl:

Publisher: ci.yml on Phylliade/ikpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

4.1.0 This release

2 files

4.0.0

2 files

3.4.2

2 files

3.4.1

2 files

3.3.4

2 files

3.3.3

2 files

3.3.2

2 files

3.3.1

2 files

3.3

2 files

3.2.2

2 files

3.2.1

2 files

3.2

2 files

3.1

2 files

3.0.1

2 files

3.0

2 files

2.3.3

2 files

2.3.2

2 files

2.3.1

2 files

2.3

3 files

2.2.3

1 file

2.2.2

1 file

2.2.1

2 files

2.2

2 files

2.1

2 files

2.0.1

2 files

2.0

2 files

1.9.99.post3

2 files

1.9.99.post2

2 files

1.9.99.post1

2 files

1.9.99

2 files

0.1.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page