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
Using the latest version of pip v23.1, it seems that pip install from this repo now fails:
# start in a venv with the required packages like catkin_pkg already installed
pip install --upgrade pip # upgrade to latest pip
pip install git+https://github.com/ros/genpy
This fails with the error
ModuleNotFoundError: No module named 'catkin_pkg'
On the other hand
# start in a venv with the required packages like catkin_pkg already installed
pip install pip==23.0.1 # use the previous version of pip
pip install git+https://github.com/ros/genpy
works.
Not sure what is going on.
The text was updated successfully, but these errors were encountered:
Using the latest version of pip v23.1, it seems that pip install from this repo now fails:
This fails with the error
On the other hand
works.
Not sure what is going on.
The text was updated successfully, but these errors were encountered: