geometric_shapes package error, assimp/aiScene.h not found
I am trying to set up the full Jade installation on Ubuntu 14.04.3.. I've followed the official instructions to do this ( http://wiki.ros.org/jade/Installation... ), but have hit something of a roadblock with the following:
$./src/catkin/bin/catkin_make_isolated --install -DCMAKE_BUILD_TYPE=Release
http://answers.ros.org/question/18735... The above is similar to my problem but no workaround is given there.
Here's the terminal output showing what happened with geometric_shapes:
==> Processing catkin package: 'geometric_shapes'
==> Building with env: '/home/toji/ros_catkin_ws/install_isolated/env.sh'
Makefile exists, skipping explicit cmake invocation...
==> make cmake_check_build_system in '/home/toji/ros_catkin_ws/build_isolated/geometric_shapes'
==> make -j4 -l4 in '/home/toji/ros_catkin_ws/build_isolated/geometric_shapes'
[ 14%] Building CXX object CMakeFiles/geometric_shapes.dir/src/mesh_operations.cpp.o
/home/toji/ros_catkin_ws/src/geometric_shapes/src/mesh_operations.cpp:54:28: fatal error: assimp/aiScene.h: No such file or directory
#include <assimp/aiScene.h>
^
compilation terminated.
make[2]: *** [CMakeFiles/geometric_shapes.dir/src/mesh_operations.cpp.o] Error 1
make[1]: *** [CMakeFiles/geometric_shapes.dir/all] Error 2
make: *** [all] Error 2
<== Failed to process package 'geometric_shapes':
Command '['/home/toji/ros_catkin_ws/install_isolated/env.sh', 'make', '-j4', '-l4']' returned non-zero exit status 2
Reproduce this error by running:
==> cd /home/toji/ros_catkin_ws/build_isolated/geometric_shapes && /home/toji/ros_catkin_ws/install_isolated/env.sh make -j4 -l4
Command failed, exiting.
I will appreciate any help.
Please include all relevant console text directly in your question. If the pastebin link ever goes away, this question will become useless. Use the edit button/link to update your question, and the Preformatted text button to format console copy/pastes.
...I've followed the official instructions to do this ( [ http://wiki.ros.org/jade/Installation.. . ), but have... Have you tried to replace link with this(jade to indigo): http://wiki.ros.org/indigo/Installation/Source
Hi, after running across the same problem, I found that geometric_shapes expects files only present in older versions of assimp. This one worked for me: https://sourceforge.net/projects/assi... (cmake . && make && make install)