A simple code to convert a file from Qt to Python code or build it into an application
Convert .ui file to .py file use :
pyuic5 -x Filename.ui -o Filename.pyConvert from .qrc file to .py file use :
pyrcc5 Filename.qrc -o Filename.py Convert from .qrc file to .exe file use :
pyinstaller --onefile --noconsole Filename.pyWarning:
If an error notification appears during the conversion, such as:
'pyinstaller' is not recognized as an internal or external command, operable program or batch file.
please install PyInstaller first.
pip install pyinstaller