libfranka is a C++ library that provides low-level control of Franka Robotics research robots. The API References offers an overview of its capabilities, while the Franka Control Interface (FCI) documentation provides more information on setting up the robot and utilizing its features and functionalities.
To find the appropriate version to use, please refer to the Robot System Version Compatibility.
- Low-level control: Access precise motion control for research robots.
- Real-time communication: Interact with the robot in real-time.
Before using libfranka, ensure your system meets the following requirements:
- Operating System: Linux with PREEMPT_RT patched kernel (Ubuntu 16.04 or later, Ubuntu 22.04 recommended)
- Compiler: GCC 7 or later
- CMake: Version 3.10 or later
- Robot: Franka Robotics robot with FCI feature installed
sudo apt-get update
sudo apt-get install -y build-essential cmake git libpoco-dev libeigen3-dev libfmt-devNote
The installation packages currently only support Ubuntu 20 (focal). Please ensure you are using this version to avoid compatibility issues.
Check your architecture:
dpkg --print-architectureDownload and install:
wget https://github.com/frankarobotics/libfranka/releases/download/<version>/libfranka_<version>_<Ubuntu_version>_<architecture>.deb
sudo dpkg -i libfranka_<version>_<Ubuntu_version>_<architecture>.debReplace <version> with the desired release version (e.g., 0.18.2, <Ubuntu_version> with focal and <architecture> with your system architecture (e.g., amd64 or arm64).
Example for version 0.18.2 on amd64:
wget https://github.com/frankarobotics/libfranka/releases/download/0.18.2/libfranka_0.18.2_focal_amd64.deb
sudo dpkg -i libfranka_0.18.2_focal_amd64.debIf you prefer to build libfranka inside a Docker container, you can use the provided Docker setup. This ensures a consistent build environment and avoids dependency conflicts on your host system.
Docker creates a self-contained environment, which is helpful if:
- Your system doesn't meet the requirements
- You want to avoid installing dependencies on your main system
- You prefer a clean, reproducible setup
If you haven't already, clone the libfranka repository:
git clone --recurse-submodules https://github.com/frankarobotics/libfranka.git cd libfranka git checkout <desired-tag-or-branch>
Build the Docker image:
cd .ci docker build -t libfranka:latest -f Dockerfile.focal . cd ..
Run the Docker container:
docker run --rm -it -v $(pwd):/workspace libfranka:latestIf you already have a build folder, you must remove it first to avoid issues:
rm -rf /workspace/build mkdir -p /workspace/build cd /workspace/build cmake -DCMAKE_BUILD_TYPE=Release -DBUILD_TESTS=OFF /workspace makeTo generate a Debian package:
sudo cpack -G DEB
Exit the Docker container by typing
exitin the terminal.Install libfranka on your host system:
Inside the libfranka build folder
cd buildon your host system, run:sudo dpkg -i libfranka*.deb
You can also build libfranka inside Docker using VS Code with the Dev Containers extension. This provides an integrated development environment inside the container.
Install Visual Studio Code:
- Download and install Visual Studio Code from the official website: https://code.visualstudio.com/.
- Follow the installation instructions for your operating system.
Open the Project in VS Code:
Inside the libfranka folder, open a new terminal and run:
code .This will open the project in VS Code.
Install the Dev Containers Extension:
Install the "Dev Containers" extension in VS Code from the Extensions Marketplace.
Open the Project in a Dev Container:
- Open the Command Palette (
Ctrl+Shift+P). - Select Dev Containers: Reopen in Container.
- VS Code will build the Docker image and start a container based on the provided
.ci/Dockerfile.
- Open the Command Palette (
Build libfranka:
- Open a terminal in VS Code.
- Run the following commands:
mkdir build && cd build cmake -DCMAKE_BUILD_TYPE=Release -DBUILD_TESTS=OFF .. make
Install libfranka:
If you want to install libfranka inside the container, you can run:
sudo make install
If you want to install libfranka on your host system, you can run:
sudo cpack -G DEB
Then in a new terminal on your host system, navigate to the libfranka
buildfolder and run:sudo dpkg -i libfranka*.deb
To verify its installation, you can run:
ls /usr/lib/libfranka.soExpected output:
/usr/lib/libfranka.so
Check the installed headers:
ls /usr/include/franka/Expected output:
active_control_base.h active_torque_control.h control_tools.h errors.h
gripper_state.h lowpass_filter.h robot.h robot_state.h
active_control.h async_control control_types.h exception.h
joint_velocity_limits.h model.h robot_model_base.h vacuum_gripper.h
active_motion_generator.h commands duration.h gripper.h
logging rate_limiting.h robot_model.h vacuum_gripper_state.h
You can check the version of the installed library:
dpkg -l | grep libfrankaExpected output:
ii libfranka 0.18.2-9-g722bf63 amd64 libfranka built using CMake
Before building and installing from source, please uninstall existing installations of libfranka to avoid conflicts:
sudo apt-get remove "*libfranka*"You can clone the repository and choose the version you need by selecting a specific tag:
git clone --recurse-submodules https://github.com/frankarobotics/libfranka.git
cd libfrankaList available tags
git tag -lCheckout a specific tag (e.g., 0.15.0)
git checkout 0.15.0Update submodules
git submodule updateCreate a build directory and navigate to it
mkdir build
cd buildConfigure the project and build
cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_PREFIX_PATH=/opt/openrobots/lib/cmake -DBUILD_TESTS=OFF ..
makeBuilding a Debian package is optional but recommended for easier installation and management. In the build folder, execute:
cpack -G DEBThis command creates a Debian package named libfranka-<version>-<architecture>.deb. You can then install it with:
sudo dpkg -i libfranka*.debInstalling via a Debian package simplifies the process compared to building from source every time. Additionally the package integrates better with system tools and package managers, which can help manage updates and dependencies more effectively.
After installation, check the Minimum System and Network Requirements for network settings, the Setting up the Real-Time Kernel for system setup, and the Getting Started Manual for initial steps. Once configured, you can control the robot using the example applications provided in the examples folder (Usage Examples).
To run a sample program, navigate to the build folder and execute the following command:
./examples/communication_test <robot-ip>Pylibfranka is a Python binding for libfranka, allowing you to control Franka robots using Python. It is included in the libfranka repository and
can be built alongside libfranka. For more details, see pylibfranka and its README.
The generated API documentation offers an overview of its capabilities.
If you actively contribute to this repository, you should install and set up pre-commit hooks:
pip install pre-commit
pre-commit installThis will install pre-commit and set up the git hooks to automatically run checks before each commit. The hooks will help maintain code quality by running various checks like code formatting, linting, and other validations.
To manually run the pre-commit checks on all files:
pre-commit run --all-filesThis will build the C++ extension and install the Python package.
libfranka is licensed under the Apache 2.0 license.