Installing Gazebo 8 with ROS Kinetic: Difference between revisions

From Intelligent Materials and Systems Lab

(Created page with " == Installing ROS Kinetic and Gazebo 8 == *Install ROS Kinetic full installation [http://wiki.ros.org/kinetic/Installation/Ubuntu] *Uninstall Gazebo 7 *Install Gazebo 8...")
 
No edit summary
Line 5: Line 5:
*Install ROS Kinetic full installation  
*Install ROS Kinetic full installation  


[http://wiki.ros.org/kinetic/Installation/Ubuntu]
[http://wiki.ros.org/kinetic/Installation/Ubuntu ROS install tutorial]


*Uninstall Gazebo 7
*Uninstall Gazebo 7
Line 11: Line 11:
*Install Gazebo 8
*Install Gazebo 8


[http://gazebosim.org/tutorials?tut=install_ubuntu]
[http://gazebosim.org/tutorials?tut=install_ubuntu Gazebo install tutorial]


' curl -ssL http://get.gazebosim.org | sh '
' curl -ssL http://get.gazebosim.org | sh '
Line 17: Line 17:
*Clone gazebo_ros_pkgs to catkin_ws/src
*Clone gazebo_ros_pkgs to catkin_ws/src


[https://github.com/ros-simulation/gazebo_ros_pkgs]
[https://github.com/ros-simulation/gazebo_ros_pkgs gazebo_ros_pkgs Github repository ]


*try to catkin_make
*try to catkin_make
Line 30: Line 30:
"error: ros/ros.h: No such file or directory"
"error: ros/ros.h: No such file or directory"
Solved by adding the line " include_directories(${catkin_INCLUDE_DIRS}) " to package CMakeLists.txt
Solved by adding the line " include_directories(${catkin_INCLUDE_DIRS}) " to package CMakeLists.txt
[https://github.com/ros-interactive-manipulation/sql_database/issues/8]
[https://github.com/ros-interactive-manipulation/sql_database/issues/8 Forum link]

Revision as of 20:50, 30 March 2017

Installing ROS Kinetic and Gazebo 8

  • Install ROS Kinetic full installation

ROS install tutorial

  • Uninstall Gazebo 7
  • Install Gazebo 8

Gazebo install tutorial

' curl -ssL http://get.gazebosim.org | sh '

  • Clone gazebo_ros_pkgs to catkin_ws/src

gazebo_ros_pkgs Github repository

  • try to catkin_make

I got about 3 errors of missing dependencies one a time and installed them with ' sudo apt-get install ros-kinetic-<package_name> ' Some "_" needed to be "-" for installing, use tab-completion to finish typing. Install each package and repeat until successful.

after successfully catkin_make'ing the package the installation should be done.


  • Error building keyboard_reader package

"error: ros/ros.h: No such file or directory" Solved by adding the line " include_directories(${catkin_INCLUDE_DIRS}) " to package CMakeLists.txt Forum link