ROS Kinetic installation
- Setup sources.list
sudo sh -c 'echo "deb http://packages.ros.org/ros/ubuntu $(lsb_release -sc) main" > /etc/apt/sources.list.d/ros-latest.list'
- Setup keys
sudo apt-key adv --keyserver hkp://ha.pool.sks-keyservers.net:80 --recv-key 421C365BD9FF1F717815A3895523BAEEB01FA116
- Package update
sudo apt-get update
- ros install full package
sudo apt-get install ros-kinetic-desktop-full
or you can install bare bones
sudo apt-get install ros-kinetic-ros-base
- Initialize rosdep
# Initialize rosdep
sudo apt-get install python-rosdep -y
# Certificates are messed up
sudo c_rehash /etc/ssl/certs
# Initialize rosdep
sudo rosdep init
# To find available packages, use:
rosdep update
- environment setup
echo "source /opt/ros/kinetic/setup.bash" >> ~/.bashrc
source ~/.bashrc
- Install dependencies
sudo apt-get install python-rosinstall python-rosinstall-generator python-wstool build-essential
Comments
Article is closed for comments.