I'm searching a way to convert a python file into an exe. I want to convert the Python file including a few folders to a msi
I already tried out Advanced Installers and the Pythoninstaller libary but neither of them worked. The files where to big for Advanced Installers and Pythoninstaller threw this error: "serialized_entry = struct.pack()"
What could I use to convert my code?
I'm searching a way to convert a python file into an exe. I want to convert the Python file including a few folders to a msi
I already tried out Advanced Installers and the Pythoninstaller libary but neither of them worked. The files where to big for Advanced Installers and Pythoninstaller threw this error: "serialized_entry = struct.pack()"
What could I use to convert my code?
Share Improve this question asked Apr 1 at 13:30 prezprez 11 bronze badge New contributor prez is a new contributor to this site. Take care in asking for clarification, commenting, and answering. Check out our Code of Conduct. 4 |1 Answer
Reset to default 0I use pyinstaller to make a standalone executable file for the program.
Then, to make a Windows installable executable file, I use the free Inno setup.
neither of them worked
is useless. If you get error then show it and we may try to resolve this single problem. – furas Commented Apr 1 at 19:15