cd robarch_ws
catkin build robarch_launcher
source devel/setup.bash
roslaunch robarch_launcher ur_marker_tracking.launch kinematics_config:=/home/YOUR_USERNAME/robarch_ws/my_robot_calibration.yaml
cd robarch_ws
catkin build robarch_launcher
source devel/setup.bash
roslaunch robarch_launcher ur_robot_fabrication.launch
Install the following tools:
- Anaconda
- Visual Studio Code and extensions: python, pylance and editorconfig
- Github Desktop
- Docker
Create a environment using Anaconda prompt
:
(base) conda create -n robarch24 compas_fab compas_eve compas --yes
Activate the environment:
(base) conda activate robarch24
Install RTDE (requires python 3.10):
(robarch24) pip install --user ur_rtde
Check installation:
(robarch24) pip show compas_fab
Name: compas-fab
Version: 0.22.0
Summary: Robotic fabrication package for the COMPAS Framework
...
Install Rhino dependencies:
(robarch24) python -m compas_rhino.install -v 7.0
🚀 You're ready!
A few additional things to try:
- On Visual Studio Code, press
Ctrl+Shift+P
,Select linter
and selectflake8
- To auto-format code,
right-click
,Format document...
- (Windows-only) Change shell: press
Ctrl+Shift+P
,Select Default Shell
and selectcmd.exe
- Try git integration: commit, pull & push are all easily available from Visual Studio Code.