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
Our Github Actions started to fail as of last week due to: ModuleNotFoundError: No module named 'roscpp.srv' when importing rospy.
To confirm I also tested this with a new local virtualenv by installing pip install --extra-index-url https://rospypi.github.io/simple/ rospy roscpp which also leads to the same error.
We've had to revert to roscpp==1.15.7.post0 for it to work again.
Problem & Diagnosis
Our Github Actions started to fail as of last week due to:
ModuleNotFoundError: No module named 'roscpp.srv'
when importingrospy
.To confirm I also tested this with a new local virtualenv by installing
pip install --extra-index-url https://rospypi.github.io/simple/ rospy roscpp
which also leads to the same error.We've had to revert to
roscpp==1.15.7.post0
for it to work again.Solution:
pip install --extra-index-url https://rospypi.github.io/simple/ rospy roscpp==1.15.7.post0
The text was updated successfully, but these errors were encountered: