ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
Temporary "fix"
Backup the original file:
sudo cp /opt/ros/kinetic/lib/python2.7/dist-packages/rqt_bag/bag_widget.py /opt/ros/kinetic/lib/python2.7/dist-packages/rqt_bag/bag_widget.py_bak
Edit the file:
sudo nano /opt/ros/kinetic/lib/python2.7/dist-packages/rqt_bag/bag_widget.py
Modify the line producing the error from:
from python_qt_binding.QtCore import Qt, qInfo, qWarning, Signal
To
from python_qt_binding.QtCore import Qt, qWarning, Signal
This WILL most probably produce other bugs but it at least lets you start the application.
2 | No.2 Revision |
Temporary "fix"
Backup the original file:
sudo cp /opt/ros/kinetic/lib/python2.7/dist-packages/rqt_bag/bag_widget.py /opt/ros/kinetic/lib/python2.7/dist-packages/rqt_bag/bag_widget.py_bak
Edit the file:
sudo nano /opt/ros/kinetic/lib/python2.7/dist-packages/rqt_bag/bag_widget.py
Modify the line producing the error from:
from python_qt_binding.QtCore import Qt, qInfo, qWarning, Signal
To
from python_qt_binding.QtCore import Qt, qWarning, Signal
Then comment every call to qInfo
in the code, you can find them with:
grep -rn "qInfo" /opt/ros/kinetic/lib/python2.7/dist-packages/rqt_bag/
Use nano or any other editor to comment the calls inside this python code.
This WILL most probably produce other bugs but it at least lets you start the application.You can then use rqt_bag
again!
3 | No.3 Revision |
Temporary Temporary "fix"
Backup the original file:
sudo cp /opt/ros/kinetic/lib/python2.7/dist-packages/rqt_bag/bag_widget.py /opt/ros/kinetic/lib/python2.7/dist-packages/rqt_bag/bag_widget.py_bak
Edit the file:
sudo nano /opt/ros/kinetic/lib/python2.7/dist-packages/rqt_bag/bag_widget.py
Modify the line producing the error from:
from python_qt_binding.QtCore import Qt, qInfo, qWarning, Signal
To
from python_qt_binding.QtCore import Qt, qWarning, Signal
Then comment every call to qInfo
in the code, you can find them with:
grep -rn "qInfo" /opt/ros/kinetic/lib/python2.7/dist-packages/rqt_bag/
Use nano or any other editor to comment the calls inside this python code.
You can then use rqt_bag
again!
4 | No.4 Revision |
Temporary "fix"Please read the comments for more information about the resolution of this bug
Edit the file:
sudo nano /opt/ros/kinetic/lib/python2.7/dist-packages/rqt_bag/bag_widget.py
Modify the line producing the error from:
from python_qt_binding.QtCore import Qt, qInfo, qWarning, Signal
To
from python_qt_binding.QtCore import Qt, qWarning, Signal
Then comment every call to qInfo
in the code, you can find them with:
grep -rn "qInfo" /opt/ros/kinetic/lib/python2.7/dist-packages/rqt_bag/
Use nano or any other editor to comment the calls inside this python code.
You can then use rqt_bag
again!