-
Notifications
You must be signed in to change notification settings - Fork 32
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Getting Error while installing rtabmap_ros #9
Comments
I can only guess, but maybe try running
If the eigen_conversions part is failing to build, maybe eigen3 or something eigen3 depends on isn't installed, so running apt-get on libeigen3-dev should install what is missing Hope that works |
Its latest version is already installed. |
hmmm maybe figure out how to install the expected version of KDL? |
well that worked for me using the link but I am getting this error: CMake Error at CMakeLists.txt:41 (add_subdirectory):
does not contain a CMakeLists.txt file. CMake Error at CMakeLists.txt:42 (pybind11_add_module): -- Configuring incomplete, errors occurred! |
found this solution on this website, hope it help others : |
so this is a new error I am getting now:
-- Build files have been written to: /home/pi/catkin_ws/build_isolated/test_tf2 |
I did some searching, maybe this will help https://answers.ros.org/question/231666/catkin_make_isolated-does-not-create-envsh/ check if test_tf2 is indeed a catkin package, if it is not, apply the fix as suggested in the link I just posted |
Thank you very much I have successfully installed rtabmap_ros, now I am on my last that is PCL 1.7. but this is for pi 2 , |
I following this guide but I keep getting this error: i get this error when i do it with make command: and this error when do it with make -j2 I am using Pi 4 8 GB ram but 32 GB SD card. |
Try -j1 for single threaded build, also maybe keep adding swap until you have enough |
I am following your guide from:
http://eleccelerator.com/wiki/index.php?title=Raspbian_Buster_ROS_RealSense
and I am now installing rtabmap_ros but I am getting these error,
when I run the command
catkin_make -j1
I get this error
CMake Error at /opt/ros/kinetic/share/catkin/cmake/catkin_workspace.cmake:100 (message):
This workspace contains non-catkin packages in it, and catkin cannot build
a non-homogeneous workspace without isolation. Try the
'catkin_make_isolated' command instead.
Call Stack (most recent call first):
CMakeLists.txt:69 (catkin_workspace)
-- Configuring incomplete, errors occurred!
See also "/home/pi/catkin_ws/build/CMakeFiles/CMakeOutput.log".
See also "/home/pi/catkin_ws/build/CMakeFiles/CMakeError.log".
make: *** [Makefile:1526: cmake_check_build_system] Error 1
Invoking "make cmake_check_build_system" failed
after getting this error I run the command
catkin_make_isolated
as mentioned in the error
but this leads to this error
In file included from /home/pi/catkin_ws/src/tf_conversions/eigen_conversions/src/eigen_kdl.cpp:30:
/home/pi/catkin_ws/src/tf_conversions/eigen_conversions/include/eigen_conversions/eigen_kdl.h:40:10: fatal error: kdl/frames.hpp: No such file or directory
#include <kdl/frames.hpp>
^~~~~~~~~~~~~~~~
compilation terminated.
make[2]: *** [CMakeFiles/eigen_conversions.dir/build.make:76: CMakeFiles/eigen_conversions.dir/src/eigen_kdl.cpp.o] Error 1
make[1]: *** [CMakeFiles/Makefile2:402: CMakeFiles/eigen_conversions.dir/all] Error 2
make: *** [Makefile:141: all] Error 2
<== Failed to process package 'eigen_conversions':
Command '['/home/pi/catkin_ws/devel_isolated/ddynamic_reconfigure/env.sh', 'make', '-j4', '-l4']' returned non-zero exit status 2
anyway to solve this problem ??
The text was updated successfully, but these errors were encountered: