You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I don't yet have a fix for this but just wanted to document the findings. When specifying Python packages to be installed by pip that include either a specific version (e.g. package==1.0.0) or with extras (e.g. package[extra]), pip is able to install the packages correctly but rosdep is unable to confirm installation of the packages. More complete example:
Output of rosdep when installing these dependencies:
Installing collected packages: mycroft-plugin-tts-mimic3
Successfully installed mycroft-plugin-tts-mimic3-0.1.5
WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv
executing command [sudo -H pip3 install -U pyee==8.1.0]
Collecting pyee==8.1.0
Using cached pyee-8.1.0-py2.py3-none-any.whl (12 kB)
Installing collected packages: pyee
Successfully installed pyee-8.1.0
WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv
ERROR: the following rosdeps failed to install
pip: Failed to detect successful installation of [mycroft-plugin-tts-mimic3[all]]
pip: Failed to detect successful installation of [pyee==8.1.0]
The text was updated successfully, but these errors were encountered:
Bumped into this too. I think there is yet another issue that can be tracked under this ticket: rosdep fails to detect successful installation of pip packages specified as VCS links, at least the error message at the end of installation is the same.
Current workaround is to install Python dependencies with the source rosdep package manager, i.e., using shell / Python scripts.
I don't yet have a fix for this but just wanted to document the findings. When specifying Python packages to be installed by
pip
that include either a specific version (e.g.package==1.0.0
) or with extras (e.g.package[extra]
),pip
is able to install the packages correctly butrosdep
is unable to confirm installation of the packages. More complete example:Snippet of custom YAML file:
Output of
rosdep
when installing these dependencies:The text was updated successfully, but these errors were encountered: