The include files from binary and source install
Hello,
I install the moveit
package from binary before, but now I found the some newer APIs needs to be install from source.
So, I use the autoremove
to unstall the old moveit
package and install the new moveit
package from source. However, I found the VScode IDE includes the same .h
file from two different path.
For example:
#include <moveit_msgs/CollisionObject.h>
It has two include path devel/include/moveit_msgs/CollisionObject.h
and /opt/ros/kinetic/include/moveit_msgs/CollisionObject.h
.
I would like to know how to delete the include files which from binary completely and correctly?
Thanks for you guys!
Have you tried doing
roscd moveit_msgs
, which directory does it take you to?I got these, any suggestion?
Since it's showing your catkin_ws this means things should work fine. If you want to remove whole moveit stack you can do
sudo apt remove ros-kinetic-moveit*
orsudo apt remove ros-kinetic-moveit-package_name
to remove specific moveit package.I update the image, sorry for previous poor resolution.
I tried
sudo apt remove ros-kinetic-moveit*
and nothing changed. :(