The PyInstaller Spec File Generator is a graphical user interface (GUI) tool built with Tkinter that simplifies the process of creating .spec files for PyInstaller. It also provides functionalities to ...
First we need to generate a spec file from pyinstaller. To do that we need to point pyinstaller to main.py file using: pyinstaller --onefile --distpath ./bin ./src/server.py The above command will ...