Robotics StackExchange | Archived questions

error at catkin_make_installation at installation

ROS Version: Melodic Morenia OS: MAC OS MOJAVE Following the instructions at http://wiki.ros.org/kinetic/Installation/OSX/Homebrew/Source getting the following error: Command Executed:

./src/catkin/bin/catkin_make_isolated --install -DCMAKE_BUILD_TYPE=Release

PWD:

~/ros_catkin_ws
CMake Error at /usr/local/Cellar/cmake/3.13.2/share/cmake/Modules/FindBoost.cmake:2100 (message):
  Unable to find the requested Boost libraries.

  Unable to find the Boost header files.  Please set BOOST_ROOT to the root
  directory containing Boost or BOOST_INCLUDEDIR to the directory containing
  Boost's headers.
Call Stack (most recent call first):
  CMakeLists.txt:4 (find_package)


-- Using CATKIN_DEVEL_PREFIX: /Users/ovishake/ros_catkin_ws/devel_isolated/class_loader
-- Using CMAKE_PREFIX_PATH: /Users/ovishake/ros_catkin_ws/install_isolated
-- This workspace overlays: /Users/ovishake/ros_catkin_ws/install_isolated
-- Using PYTHON_EXECUTABLE: /usr/local/bin/python
-- Using default Python package layout
-- Using empy: /usr/local/lib/python2.7/site-packages/em.pyc
-- Using CATKIN_ENABLE_TESTING: ON
-- Call enable_testing()
-- Using CATKIN_TEST_RESULTS_DIR: /Users/ovishake/ros_catkin_ws/build_isolated/class_loader/test_results
-- gtest not found, C++ tests can not be built. Please install the gtest headers globally in your system to enable gtests
-- nosetests not found, Python tests can not be run (try installing package 'python-nose')
-- catkin 0.7.14
CMake Error at CMakeLists.txt:11 (find_package):
  By not providing "Findconsole_bridge.cmake" in CMAKE_MODULE_PATH this
  project has asked CMake to find a package configuration file provided by
  "console_bridge", but CMake did not find one.

  Could not find a package configuration file provided by "console_bridge"
  with any of the following names:

    console_bridgeConfig.cmake
    console_bridge-config.cmake

  Add the installation prefix of "console_bridge" to CMAKE_PREFIX_PATH or set
  "console_bridge_DIR" to a directory containing one of the above files.  If
  "console_bridge" provides a separate development package or SDK, be sure it
  has been installed.


-- Configuring incomplete, errors occurred!
See also "/Users/ovishake/ros_catkin_ws/build_isolated/class_loader/CMakeFiles/CMakeOutput.log".
<== Failed to process package 'class_loader': 
  Command '['/Users/ovishake/ros_catkin_ws/install_isolated/env.sh', 'cmake', '/Users/ovishake/ros_catkin_ws/src/class_loader', '-DCATKIN_DEVEL_PREFIX=/Users/ovishake/ros_catkin_ws/devel_isolated/class_loader', '-DCMAKE_INSTALL_PREFIX=/Users/ovishake/ros_catkin_ws/install_isolated', '-DCMAKE_BUILD_TYPE=Release', '-G', 'Unix Makefiles']' returned non-zero exit status 1

Reproduce this error by running:
==> cd /Users/ovishake/ros_catkin_ws/build_isolated/class_loader && /Users/ovishake/ros_catkin_ws/install_isolated/env.sh cmake /Users/ovishake/ros_catkin_ws/src/class_loader -DCATKIN_DEVEL_PREFIX=/Users/ovishake/ros_catkin_ws/devel_isolated/class_loader -DCMAKE_INSTALL_PREFIX=/Users/ovishake/ros_catkin_ws/install_isolated -DCMAKE_BUILD_TYPE=Release -G 'Unix Makefiles'

Command failed, exiting.

Asked by OVISHAKE on 2019-01-10 22:49:11 UTC

Comments

Getting things to compile on OSX is always difficult, and Mojave, being the most recent, even more so.

Not saying it can't be done, but I don't believe you can expect any "canned answers".

Asked by gvdhoorn on 2019-01-11 03:59:55 UTC

Answers

Try the following

sudo apt install libconsole-bridge-dev

Asked by adithyasunil26 on 2022-06-11 15:55:42 UTC

Comments