ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question
0

Unmet dependencies in installing moveit_ros and universal robot

asked 2019-09-06 08:09:30 -0500

Gates gravatar image

Hello everyone,

I hope this question is not somehow repetitive because I saw a bunch of "unmet dependencies ros-distro-Xpackage" type of questions changing the rospackage name. I tried almost all of the suggestions under the corresponding questions but my problem still persists.

I used to use moveit and universal robots without any issue. However now, because of a reason which I couldn't figure out why and since when, I cannot compute catkin_make. I have two packages with problem but let say I focus on moveit for now.

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

moveit_visual_toolsConfig.cmake
moveit_visual_tools-config.cmake

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

If I remove those packages from my workspace, then I can build without any problem. I tried to reinstall the whole package.

sudo apt-get install ros-kinetic-moveit

The following packages have unmet dependencies:
 ros-kinetic-moveit : Depends: ros-kinetic-moveit-commander but it is not going to be installed
                      Depends: ros-kinetic-moveit-planners but it is not going to be installed
                      Depends: ros-kinetic-moveit-plugins but it is not going to be installed
                      Depends: ros-kinetic-moveit-ros but it is not going to be installed
                      Depends: ros-kinetic-moveit-setup-assistant but it is not going to be installed
E: Unable to correct problems, you have held broken packages.

Also I tried the installation from the documentation of tutorials:

git clone https://github.com/ros-planning/movei... -b kinetic-devel

git clone https://github.com/ros-planning/panda... -b kinetic-devel

Whatever I tried, I have unmet dependency problems. First, I tried:

rosdep install -y --from-paths . --ignore-src --rosdistro kinetic

which returns me ridiculously another unmet dependency problems.

executing command [sudo -H apt-get install -y ros-kinetic-moveit-fake-controller-manager]
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 ros-kinetic-moveit-fake-controller-manager : Depends: ros-kinetic-moveit-ros-planning but it is not going to be installed
E: Unable to correct problems, you have held broken packages.
ERROR: the following rosdeps failed to install
  apt: command [sudo -H apt-get install -y ros-kinetic-moveit-fake-controller-manager] failed

Then I dig into installing the whole chains of dependencies manually with all my patience:

user:~/moveit_ws$ sudo -H apt-get install -y ros-kinetic-moveit-ros-planning
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may ...
(more)
edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
0

answered 2019-09-09 04:27:06 -0500

Gates gravatar image

I have figured out that this problem roots for having multiple workspaces and my mis-sourcing them in the first place. Since I am kind of noob in ROS still, I didn't know that I should have chained them. My random sourcing catkin_ws1/devel/setup.bash and catkin_ws2/devel/setup.bash whenever I install a new rospackage caused my .bashrc not to find the proper packages was the reason of not finding the packages which I had been using before.

I have tried the solutions here1, here2 and reconfiguring my PATH Environment Variable as described here3

export ROS_PACKAGE_PATH=/home/user/ros/ros-pkg:/another/path

I couldn't solve the issue and I reinstalled ros-kinetic-desktop-full but I strongly believe that I made some mistakes again in building up the workspaces chain. I don't think reinstalling the whole ros was the best solution. For someone, those links might be a solution that's why it is worth to suggest here.

edit flag offensive delete link more

Question Tools

2 followers

Stats

Asked: 2019-09-06 08:09:30 -0500

Seen: 597 times

Last updated: Sep 09 '19