fpasteau / raspicam_node

Groovy ROS node for camera module of Raspberry Pi
76 stars 39 forks source link

image_transport and camera_info_manager NOT FOUND #13

Open SreeshaKS opened 7 years ago

SreeshaKS commented 7 years ago

Hello , I am trying to make this package using catkin , two packages are mandatory and NOT found , could you please tell me where I can find and install them ASAP Thank you Packages : image_transport and camera_info_manager. apt-get does not work. gives a package not found error

bthanos commented 6 years ago

You need to get these packages using the rosinstall tools:

I had a similiar issue - missing roslint package:

rosinstall_generator roslint --rosdistro kinetic --deps --wet-only --tar > kinetic-roslint-wet.rosinstall

Fetch the packages and put them in the ~/ros_catkin_ws/src:

wstool merge -t src kintetic-roslint-wet.rosinstall wstool update -t src

then do Catkin_make

SreeshaKS commented 6 years ago

Thank You