Skip to content

Instantly share code, notes, and snippets.

@ShaoxiongYao
Created September 21, 2024 02:18
Show Gist options
  • Save ShaoxiongYao/60e775f02307512e37b766dc425dcb40 to your computer and use it in GitHub Desktop.
Save ShaoxiongYao/60e775f02307512e37b766dc425dcb40 to your computer and use it in GitHub Desktop.
Procedure to install UR simulator on Ubuntu through docker
  1. Ensure Docker is Installed Correctly:
docker --version
  1. Pull the docker. For e-series:
sudo docker pull universalrobots/ursim_e-series

or for cb3:

docker pull universalrobots/ursim_cb3
  1. Run the docker. For e-series:
sudo docker run --rm -it -p 5900:5900 -p 29999:29999 -p 30001-30004:30001-30004 universalrobots/ursim_e-series

or for cb3:

sudo docker run --rm -it -p 5900:5900 -p 29999:29999 -p 30001-30004:30001-30004 universalrobots/ursim_cb3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment