March 2018
Intermediate to advanced
1396 pages
42h 14m
English
Here is the procedure to install rosjava from source code:
First, you have to create a catkin workspace folder called rosjava:
$ mkdir -p ~/rosjava/src
Initialize the workspace and clone the source files using the following command:
$ wstool init -j4 ~/rosjava/src https://raw.githubusercontent.com/rosjava/rosjava/indigo/rosjava.rosinstall
If you getting any issues related to wstool, you can install it using the following command:
$ sudo apt-get install python-wstool
Switch to the rosjava workspace:
$ cd ~/rosjava
Install the dependencies of the rosjava source files:
$ rosdep update
$ rosdep install --from-paths src -i -y
After installing the dependencies, build the entire workspace:
$ catkin_make
After successfully ...