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
from PySide2 import QtWidgets, QtCore ImportError: /lib/x86_64-linux-gnu/libQt5Core.so.5: version `Qt_5.15' not found (required by /usr/local/lib/python3.8/dist-packages/PySide2/libpyside2.abi3.so.5.15)
#2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
Solution:
This is usually because there are multiple versions of the QT shared libraries on the system which are incompatible with each other. For instance, if an application installed from apt required Qt5, ubuntu would store the QT shared libraries in:
/usr/lib/x86_64-linux-gnu/
Meanwhile, the PyPI installed PyQt5 stores QT shared libraries in:
/lib/python/site-packages/PyQt5/Qt5/lib
whenever i run your progress bar code. i get this error.

and if try to add round progress bar in my already developed code it cause same error.
The text was updated successfully, but these errors were encountered: