ros-drivers / axis_camera

Contains basic Python drivers for accessing an Axis camera's MJPG stream. Also provides control for PTZ cameras.
BSD 3-Clause "New" or "Revised" License
52 stars 74 forks source link

atkin _make fails with following message in hydro - ubuntu #27

Closed anfederman closed 10 years ago

anfederman commented 10 years ago

CMake Error at /opt/ros/hydro/share/catkin/cmake/catkinConfig.cmake:72 (find_package): Could not find a package configuration file provided by "camera_info_manager_py" with any of the following names:

camera_info_manager_pyConfig.cmake
camera_info_manager_py-config.cmake

Add the installation prefix of "camera_info_manager_py" to CMAKE_PREFIX_PATH or set "camera_info_manager_py_DIR" to a directory containing one of the above files. If "camera_info_manager_py" provides a separate development package or SDK, be sure it has been installed. Call Stack (most recent call first): axis_camera/CMakeLists.txt:4 (find_package)

-- Configuring incomplete, errors occurred! Invoking "cmake" failed

jack-oquin commented 10 years ago

You need to install the camera_info_manager_py package. On Ubuntu, do it this way:

$ sudo apt-get install ros-hydro-camera-info-manager-py

If you want to build it from source, add this github repository to your catkin workspace:

mikepurvis commented 10 years ago

More generally, you can use rosdep to install all dependencies of packages in your current workspace.

mohammad-h-b commented 3 years ago

You need to install the camera_info_manager_py package. On Ubuntu, do it this way:

$ sudo apt-get install ros-hydro-camera-info-manager-py

If you want to build it from source, add this github repository to your catkin workspace:

I have the same problem here.

habibmuhammadthariq commented 2 years ago

You need to install the camera_info_manager_py package. On Ubuntu, do it this way:

$ sudo apt-get install ros-hydro-camera-info-manager-py

If you want to build it from source, add this github repository to your catkin workspace:

* https://github.com/ros-perception/camera_info_manager_py.git

I got this issue in ros noetic. Thanks for @jack-oquin for the suggestion to build the camera-info-manager-py from github. It worked for me