Skip to main content
Version: 6

Quick Start Install

Welcome!

A license key is required to run MoveIt Pro; if you do not already have one please contact us for more information. By downloading the MoveIt Pro software you are agreeing to the Terms and Conditions.

Supported Operating Systems

MoveIt Pro runs on Ubuntu natively, but we also support Windows and macOS through virtual machines. Choose your computer's operating system from below:

Ubuntu Desktop 22.04 is our recommended operating system for best performance.

  • Note: Our installation process will not install ROS or MoveIt on your host machine, and will not affect any existing ROS workspaces or configurations you may have.

For the full system requirements see the Tech Specs.

Docker Installation

MoveIt Pro uses a Docker-based install to make ROS dependency management and compatibility easier. Note we do not currently support Docker Desktop due to its separate network stack. Check if you already have Docker by running in a terminal:

docker run hello-world
If Docker is already installed, click here.

Make sure that your Docker version is from Docker's Apt repositories - the versions from Canonical are very old. You can check this by running

apt-cache policy docker-compose-plugin

and making sure that the installed version (marked with ***) is from https://download.docker.com/linux/ubuntu, not a domain under ubuntu.com.

If Docker is not installed, click here.

We recommend two ways to install Docker:

Easiest

Simply copy paste the below commands into your terminal:

sudo apt-get install curl
curl -fsSL https://get.docker.com -o get-docker.sh
sudo sh get-docker.sh
sudo groupadd docker
sudo usermod -aG docker $USER
sg docker "newgrp $(id -gn)"

More Advanced Follow Docker's official documentation:

  1. Docker's convenience script
  2. Docker's post-installation steps to ensure you can run without sudo privileges.

Finally

To ensure permissions settings take affect for all terminal sessions, log out and back in to your computer.

Finally, verify that you can run Docker commands without sudo.

docker run hello-world

Install MoveIt Pro

note

Upgrading: If you have previously installed the software, see instead Upgrading MoveIt Pro.

To install, run in a terminal:

curl -LJO https://github.com/PickNikRobotics/moveit_pro_deb/raw/main/picknik/moveit-pro-6.2.0-any.deb
sudo apt install ./moveit-pro-6.2.0-any.deb
If you got some concerning apt warnings or errors, click here.

Known Warning

You might notice a warning

N: Download is performed unsandboxed as root as file '/home/USERNAME/moveit-pro-6.2.0-any.deb' couldn't be accessed by user '_apt'. - pkgAcquire::Run (13: Permission denied)

at the end of the install. This warning can be ignored and is not an indicator of install failure. You can continue with the steps below to run and launch MoveIt Pro.

Known Prompt

Running kernel seems to be up to date.
Restarting services...
Daemons using outdated libraries
...
Which services should be restarted?

This is likely because you are using Ubuntu Server, perhaps in Parallels, and can be ignored. Just press enter.

Known Issue

If you use pyenv you may need to run the following command to ensure the correct Python version is used:

 pyenv global system

Quick Start MoveIt Pro

Let's get started:

moveit_pro run

When you run MoveIt Pro for the first time, it will prompt you to download an example user workspace and robot configuration. These are our recommend responses:

  • Agree to downloading the default user workspace ("moveit_studio_ur_ws").
  • Remove existing folders, if prompted. Folders that contain user configuration are automatically backed up.
  • Remove old, unused Docker files, if prompted.
  • Rebuild the user workspace.

MoveIt Pro will download and build the necessary Docker image, which requires a ~2 GB download the first time, and might take a few minutes to update and install the package dependencies. Go get a coffee ☕.

note

Advanced users: if you have an existing, custom MoveIt Pro workspace, you can use moveit_pro configure to set your particular user workspace and robot configuration. See Configuring MoveIt Pro to learn more.

To learn more about configure and other MoveIt Pro CLI options, try moveit_pro --help.

If you run into problems at this point, check out our Troubleshooting Guide

After building your workspace:

The last step of the quick start should have you choose the robot configuration package. We provide several example packages with varying robot types and morphologies. We recommend you choose "arm_on_rail_sim" as this will load an example UR5e robot on a linear rail in a physics simulator.

Next, the MoveIt Pro Runtime should load in the background, and the MoveIt Pro Developer Platform user interface should launch in your default browser at http://localhost/. It should look like this:

tip

You can also run the MoveIt Pro Runtime in headless mode, have it communicate with your application, and visualize things through other tools like RViz:

moveit_pro run --headless

Troubleshooting

If you are using a firewall, click here.

The Cryptlex licensing servers we use in the US require whitelisting the following IP addresses and web API URL:

  • 52.223.22.71
  • 35.71.188.31
  • https://api.cryptlex.com:443

Servers in the EU require whitelisting the following IP addresses and web API URL:

  • 75.2.113.112
  • 99.83.149.57
  • https://api.eu.cryptlex.com:443

For more information on offline authentication, please contact us_ directly.


Other issues, questions, or feedback:

Start An Example Application

To quickly see an example application (an "Objective") click the "Run" button on the "Pick April Tag Labeled Object" Objective that should listed in the "All Objectives" menu. You should now see a UR5e arm on a linear rail executing a pick and place motion:

To get a better understanding of the robot's simulated world, change the view to 4 quadrant view by clicking on the squares icon at the top right of the application:

note

If you have an Nvidia GPU and experience slower camera performance than pictured here, there is a temporary workaround documented in your checkout of the moveit_studio_ur_ws Dockerfile. After updating the Dockerfile, you must rebuild your user image (moveit_pro build user_image). The degraded performance is a result of Docker X11 forwarding with Nvidia drivers. A permanent solution is in development will be released as an update to MoveIt Pro.

note

Advanced: Externally Trigger MoveIt Pro using Python API

Often times MoveIt Pro is integrated into your existing codebase and tech stack - this is possible using our Python API tutorial. It will explain how to use ROS to start and stop Objectives using Python code. Another approach is to communicate using websockets in languages such as JavaScript, Python, Rust, or Java. This is documented in our Websocket Interface tutorial.

Click on the Next button below to continue through the tutorials.