ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question

Revision history [back]

As by today it is not possible to install libuvc_ros via apt-get. Here are the steps to install libuvc_ros manually under ROS kinetic:

# Install dependencies, as I wasn't able to install them via rosdep
sudo apt-get install libusb-1.0-0 libusb-1.0-0-dev

# Clone libuvc_ros and libuvc to your workspace
cd /path/to/your/workspace/src
git clone https://github.com/ktossell/libuvc_ros.git
git clone https://github.com/ktossell/libuvc.git

# The following instructions come from the libuvc's Readme file
mkdir libuvc/build
cd libuvc/build
cmake ..
make && sudo make install

# Run catkin
cd /path/to/your/workspace
catkin_make