We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The text was updated successfully, but these errors were encountered:
Sorry, something went wrong.
Looks like someone made a setup script for ROS: http://wiki.ros.org/ROS/Installation/TwoLineInstall
rpi setup:
sudo apt update && \ sudo apt -y install git vim cmake catkin
#Install ROS Kinetic sudo sh -c 'echo "deb http://packages.ros.org/ros/ubuntu xenial main" > /etc/apt/sources.list.d/ros-latest.list' && \ sudo apt-key adv --keyserver hkp://ha.pool.sks-keyservers.net:80 --recv-key 0xB01FA116 && \ sudo apt update && \ sudo apt -y install ros-kinetic-ros-core && \ sudo rosdep init && \ rosdep update && \ echo "source /opt/ros/kinetic/setup.bash" >> ~/.bashrc && \ echo "source ~/catkin_ws/devel/setup.bash" >> ~/.bashrc
#Setup Catkin Workspace mkdir -p ~/catkin_ws/src && \ cd ~/catkin_ws/src && \ catkin_init_workspace && \ catkin_make -C ~/catkin_ws/ && \ echo "alias cm='catkin_make -j $(nproc) -C ~/catkin_ws/'" >> ~/.bash_aliases &&\ source ~/.bashrc
# install ros packages sudo apt -y install ros-kinetic-cv-bridge ros-kinetic-image-transport ros-kinetic-mavlink ros-kinetic-mavros ros-kinetic-mavros-msgs \ ros-kinetic-cmake-modules ros-kinetic-control-toolbox ros-kinetic-joy
# install geoid's for mavros sudo geographiclib-get-geoids minimal
# install movement library cd ~/catkin_ws/src && \ git clone https://github.com/ksu-auv-team/movement_package.git && \ cm
alecGraves
No branches or pull requests
The text was updated successfully, but these errors were encountered: