RoPod/Tutorials/Setup IDE: Difference between revisions
Jump to navigation
Jump to search
(Created page with 'Using an Integrated Development Environment (IDE) makes it easier to find your way in the ROS cpp code. All functions, variables, classes, etc. will be highlighted and can be be …') |
No edit summary |
||
Line 4: | Line 4: | ||
<pre> | <pre> | ||
sudo apt install kdevelop | sudo apt-get install kdevelop | ||
</pre> | </pre> | ||
To set it up and open a ROS project, either a whole catkin workspace or a package, follow carefully the instructions here http://wiki.ros.org/IDEs#kDevelop. |
Revision as of 15:27, 6 October 2017
Using an Integrated Development Environment (IDE) makes it easier to find your way in the ROS cpp code. All functions, variables, classes, etc. will be highlighted and can be be easily tracked.
From the suggestions in http://wiki.ros.org/IDEs, we recommend to use KDevelop. Install it first:
sudo apt-get install kdevelop
To set it up and open a ROS project, either a whole catkin workspace or a package, follow carefully the instructions here http://wiki.ros.org/IDEs#kDevelop.