+ 1
How to create a Executable for .py file?
How do I convert a Python Program (.py file) into a Windows Executable (.exe file) so that it runs on both 32-bit and 64-bit systems. I have tried PyInstaller, but the .exe file created on 64-bit machine does not work on 32-bit machine. What do I do?
3 Respostas
+ 4
There is a tool called py2exe. Check it out
+ 2
+ 1
pip install pyinstaller
pyinstaller Yourfile.py