Update 'rpi_install.bash'

This commit is contained in:
winterhalderp 2021-03-16 13:48:47 +01:00
parent da35fd10bd
commit 80ea2e75e6
1 changed files with 4 additions and 4 deletions

View File

@ -109,16 +109,16 @@ sudo apt install -y git
# Setup remote git from inside workspace
cd ~/colcon_ws
git init
git remote add origin https://github.com/patrickw135/pubsub.git
git remote add origin https://egit.irs.uni-stuttgart.de/DLR-Libs/ROS-CANopen.git
git fetch --all
git reset --hard origin/master
# Install your project specific python packages
# You can use pip3 as the install tool, eg:
pip3 install picamera
# Or you can use the software installer:
sudo apt install python3-picamera
pip3 install python-can
pip3 install canopen
# again