error with roslaunch after build using catkin_make_isolated
I installed cartographer as recommended here . Then, I installed rosaria
, rosaria_client
in the same workspace using ninja
. Then, when I went for roslaunch rosaria_client rosaria_client.launch
I got following error.
started roslaunch server http://anindya-Latitude-E7270:40633/
SUMMARY
========
PARAMETERS
* /RosAria/port: /dev/ttyUSB0
* /rosdistro: indigo
* /rosversion: 1.11.21
NODES
/
RosAria (rosaria/RosAria)
RosAria_interface (rosaria_client/interface)
ROS_MASTER_URI=http://localhost:11311
core service [/rosout] found
process[RosAria-1]: started with pid [14198]
ERROR: cannot launch node of type [rosaria_client/interface]: can't locate node [interface] in package [rosaria_client]
My ros package path shows
echo $ROS_PACKAGE_PATH
/home/anindya/catkin_test_2/install_isolated/share:/home/anindya/catkin_test_2/install_isolated/stacks:/opt/ros/indigo/share:/opt/ros/indigo/stacks
I also added
install(DIRECTORIES
launch
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}
in this package's CMakeLists.txt, but, no result. I am not sure what could be the reason behind this problem.