Skip to content

Tag: qt5

how to make a package(pypi) for pyqt5 app on windows?

I wrote an application with pyqt5 and packaged it using python setup.py sdist to make it available on PyPi the app runs well on Linux distributions but there is a problem with windows when i run it ,it does open a console then the actual app shows up is there any way to fix it ? setup.py Answer Instead of

QTextedit find() always returns False (pyside2)

I want to do some search and replace in a QTextEdit but QTextEdit.find() always returns False/finds nothing. Where is my mistake? Here is a (very) minimal reproducible example: Thx for that -.-: “This question already has an answer here: QTextEdit.find() doesn’t work in Python” That is not t…