Skip to main content

A Flexible Framework for Robot Control in Python

Project description

scikit-robot: A Flexible Framework for Robot visualization and programming in Python

PyPI Python Versions Build Status Open In Colab

Documentation | Installation | Quick Start | Python API | Contribute

Scikit-Robot is a lightweight pure-Python library for robotic kinematics, motion planning, visualization and control.

https://github.com/user-attachments/assets/1dad1a4d-ba59-4ec0-93b0-96c8718c9e8f

Installation

Quick Install with uv (Recommended)

uv is a fast Python package manager. Create a virtual environment and install scikit-robot:

uv venv
source .venv/bin/activate  # Linux/macOS
# .venv\Scripts\activate   # Windows
uv pip install scikit-robot

Or with all optional dependencies:

uv pip install "scikit-robot[all]"

Install with pip

You may need to install some dependencies by apt-get install:

sudo apt-get update
sudo apt-get install libspatialindex-dev freeglut3-dev libsuitesparse-dev libblas-dev liblapack-dev

Then,

pip install scikit-robot

If you would like to use Pybullet Interface, open3d and fast-simplification for mesh simplification,

pip install scikit-robot[all]

Command Line Tools

Scikit-robot provides a unified command-line interface through the skr command, which consolidates all robot-related tools into a single entry point.

Using the skr Command

You can use the skr command with various subcommands:

# View all available commands
skr --help

# Visualize URDF models
skr visualize-urdf ~/.skrobot/pr2_description/pr2.urdf --viewer trimesh

# Convert URDF mesh files
skr convert-urdf-mesh robot.urdf --output converted_robot.urdf

# Change URDF root link
skr change-urdf-root robot.urdf new_root_link output.urdf

# Calculate URDF hash
skr urdf-hash robot.urdf

# Modularize URDF files
skr modularize-urdf robot.urdf --output modular_robot.urdf

# Visualize mesh files
skr visualize-mesh mesh_file.stl

# Convert wheel collision models
skr convert-wheel-collision robot.urdf --output converted.urdf

# Generate robot class from URDF geometry
skr generate-robot-class robot.urdf --output MyRobot.py

Legacy Commands (still supported)

For backward compatibility, the original commands are still available:

# These commands work the same as their skr equivalents
visualize-urdf ~/.skrobot/pr2_description/pr2.urdf --viewer trimesh
convert-urdf-mesh robot.urdf --output converted_robot.urdf

Visualize URDF

To visualize a URDF model and inspect your robot's configuration:

skr visualize-urdf ~/.skrobot/pr2_description/pr2.urdf --viewer trimesh

If you experience performance issues with the default viewer, try pyrender for smoother visualization:

skr visualize-urdf ~/.skrobot/pr2_description/pr2.urdf --viewer pyrender

For a web-based viewer with interactive joint angle sliders, use viser:

skr visualize-urdf ~/.skrobot/pr2_description/pr2.urdf --viewer viser

Running these commands should open a viewer displaying your robot's 3D model. Below is a sample image of what you should expect.

Viewer Example

Viser Viewer - Interactive Motion Planning

The viser viewer opens in your browser and provides a full-featured interface for robot manipulation:

  • Joint Control: GUI sliders for manipulating joint angles in real-time
  • Interactive IK: Drag transform controls at each end-effector to solve inverse kinematics
  • Motion Planning: Plan collision-free trajectories between waypoints with obstacle avoidance

Viser Viewer

Interactive Motion Planning Demo

The following video demonstrates the motion planning capabilities with collision avoidance:

https://github.com/user-attachments/assets/1dad1a4d-ba59-4ec0-93b0-96c8718c9e8f

Use the viser viewer with motion planning enabled:

from skrobot.viewers import ViserViewer
from skrobot.models import Panda

# Create viewer with IK and motion planning enabled
viewer = ViserViewer(enable_ik=True, enable_motion_planning=True)
robot = Panda()
viewer.add(robot)
viewer.show()

Or via command line:

skr visualize-urdf robot.urdf --viewer viser

Key features:

  • Save waypoints by posing the robot via IK
  • Add obstacles (sphere, box, cylinder) interactively
  • Plan collision-free trajectories using augmented Lagrangian optimization
  • Visualize planned trajectory as ghost robots
  • Animate the planned motion

Interactive IK Demo

Drag the transform controls at each end-effector to solve IK in real-time:

https://github.com/user-attachments/assets/1294307e-a901-4f5f-aa4e-433cfbfacd03

Create Your Own Robot Model (URDF)

If you want to build your own robot from scratch, you can refer to the How to Create URDF from CAD Software documentation.

Create URDF from Solidworks

Try it in Google Colab!

You can try scikit-robot directly in your browser without any installation:

Open In Colab

This interactive notebook demonstrates:

  • Multiple robot models (Kuka, Fetch, Nextage, PR2, Panda) with synchronized animation
  • Grasp and pull manipulation task with inverse kinematics
  • 3D visualization in Jupyter/Colab with smooth updates

Jupyter Notebook Viewer

Scikit-robot includes JupyterNotebookViewer for interactive 3D visualization in Jupyter notebooks and Google Colab:

import skrobot

# Create robot and viewer
robot = skrobot.models.PR2()
viewer = skrobot.viewers.JupyterNotebookViewer(height=600)
viewer.add(robot)

# Display and animate
viewer.show()

for _ in range(10):
    robot.rarm.angle_vector([0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7])
    viewer.redraw()  # Smooth updates without flickering

See examples/notebooks/ for more examples.

Features

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distribution

scikit_robot-0.3.2.tar.gz (970.7 kB view details)

Uploaded Source

Built Distribution

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

scikit_robot-0.3.2-py3-none-any.whl (1.0 MB view details)

Uploaded Python 3

File details

Details for the file scikit_robot-0.3.2.tar.gz.

File metadata

  • Download URL: scikit_robot-0.3.2.tar.gz
  • Upload date:
  • Size: 970.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.9.25

File hashes

Hashes for scikit_robot-0.3.2.tar.gz
Algorithm Hash digest
SHA256 3b64a1d3daa917a04782da10532544af7ec869ad33efc5ec2dc253e9113406dc
MD5 f3996197f8d3e0b3b6ccb35b18f48d61
BLAKE2b-256 c5f66f65cc1c083cfdbec838be6c8da8bf936e31220c6aae5d126c782aa98da9

See more details on using hashes here.

File details

Details for the file scikit_robot-0.3.2-py3-none-any.whl.

File metadata

  • Download URL: scikit_robot-0.3.2-py3-none-any.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.9.25

File hashes

Hashes for scikit_robot-0.3.2-py3-none-any.whl
Algorithm Hash digest
SHA256 9ca8f08b833207858f0e27f4859d09ca2352e9b13a936d61b186155874be6530
MD5 aedd9949465ce076e2216f0a72c12749
BLAKE2b-256 1a83c6ff606a44d33e57828e9df1c02aaf1cb6f8b6eb11bd293a4170d4895cca

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page