ICube-Robotics / ethercat_driver_ros2

Hardware Interface for EtherCAT module integration with ros2_control
https://icube-robotics.github.io/ethercat_driver_ros2/
Apache License 2.0
126 stars 32 forks source link

Can't get the rosdep to install #64

Closed IdoPractical closed 1 year ago

IdoPractical commented 1 year ago

Hi! I'm trying to install the driver, but I got stuck at this command: rosdep install --ignore-src --from-paths . -y -r Getting this error:

ERROR: the following packages/stacks could not have their rosdep keys resolved
to system dependencies:
ethercat_driver_ros2: Cannot locate rosdep definition for [ethercat_plugins]
Continuing to install resolvable dependencies...
#All required rosdeps installed successfully

Did I do something wrong in the process? Thanks!

datamomo commented 1 year ago

Hi,

I think this isn't your fault. As you can see here previously there was one colcon package for all plugins called "ethercat_plugins". This package does not exist anymore since the plugins were split into vendor specific packages. This error occurs because the "ethercat_plugins" package is still referenced in the package.xml. So since this package does not exist anymore you can ignore that error. For me it did not cause any problem. But if you want to remove the error completely I think you just can remove the dependency from the previously mentioned package.xml.

Best regards

IdoPractical commented 1 year ago

All right, thank you!