Open Yadunund opened 2 years ago
I think there is mismatch between the PyQt5 version and the bindings used in ROS. Since you have manually installed specific versions of PyQt5, it might be helpful to remove those first to avoid potential conflicts. And then install ros-compatible pyqt5. Try remove and reinstall rqt_reconfigure.
$ python3 -m pip uninstall PyQt5
$ sudo apt-get install python3-pyqt5
$ sudo apt-get purge ros-galactic-rqt-reconfigure
$ sudo apt-get install ros-galactic-rqt-reconfigure
I think at least this issue resolve the incorrect version of the package or dependencies?..
Hope this works
I'm on an
Ubuntu 20.04
system withgalactic
binary of this package version1.0.8-1focal.20220430.131618
Running
ros2 run rqt_reconfigure rqt_reconfigure
throws the following exceptionFrom what I understand this is due to having a mismatch in the
PyQt5
version on my system. So I manually installedPyQt5-5.10.1
withpython3 -m pip install PyQt5==5.10.1
.Then upon launching, I get this error below
Then I installed
python3 -m pip install PyQt5==5.12
following the hint from theImportError
. But now I'm experiencingWhat am I missing?