- To install ROS Noetic on your ubuntu PC, just follow the wiki instructions as depicted here.
- Additionally, you will need to install catkin tools for python 3:
sudo apt install python3-catkin-tools
- Create your catkin workspace from your desired path as:
mkdir -p catkin_ws/src
cd catkin_ws/
- For building the workspace, our preferred command is catkin build:
catkin build
- If you get into an error with Python libraries when compiling your workspace, you can first test which is your PYTHONPATH
If the Python path is not the one from where you want to compile your workspace, you can change it when compiling as:
echo $PYTHONPAT
catkin build -DPYTHON_EXECUTABLE=/usr/bin/python3
- More problems to come!