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

luis's profile - activity

2020-06-13 15:21:32 -0500 received badge  Famous Question (source)
2020-03-30 23:00:46 -0500 received badge  Notable Question (source)
2020-03-30 23:00:46 -0500 received badge  Popular Question (source)
2020-02-28 16:27:12 -0500 commented answer rosdep is not installing pip dependencies

Thank you! That was indeed causing the problem.

2020-02-28 16:26:50 -0500 marked best answer rosdep is not installing pip dependencies

Hello, I have a package perception with the following in package.xml:

<exec_depend>open3d-pip</exec_depend>
<exec_depend>pyrealsense2-pip</exec_depend>
<exec_depend>python-opencv</exec_depend>

The first two are packages I've added myself here: https://github.com/luisrayas3/rosdist... which is included in sources.list.d:

$ cat /etc/ros/rosdep/sources.list.d/10-luis.list
yaml https://github.com/luisrayas3/rosdistro/raw/master/rosdep/python.yaml

And in fact this does seem to not be the issue:

$ rosdep resolve pyrealsense2-pip
#pip
pyrealsense2

But rosdep does not try to install them:

$ rosdep install --simulate --reinstall perception
#[apt] Installation commands:
  sudo -H apt-get install ros-melodic-ros-base
  sudo -H apt-get install ros-melodic-image-common
  sudo -H apt-get install ros-melodic-image-transport-plugins
  sudo -H apt-get install ros-melodic-catkin
  sudo -H apt-get install ros-melodic-vision-opencv
  sudo -H apt-get install ros-melodic-perception-pcl
  sudo -H apt-get install ros-melodic-laser-pipeline
  sudo -H apt-get install ros-melodic-image-pipeline

On a whim I have tried to change the dependencies to <depend> without luck.

Additional info:

  • Ubuntu 18.04

  • ROS melodic

All help appreciated.

2020-02-28 16:26:50 -0500 received badge  Scholar (source)
2020-02-28 16:26:49 -0500 received badge  Supporter (source)
2020-02-28 12:31:17 -0500 received badge  Enthusiast
2020-02-28 06:57:47 -0500 asked a question rosdep is not installing pip dependencies

rosdep is not installing pip dependencies Hello, I have a package perception with the following in package.xml: <exe