Tuesday, June 7, 2016

Pythonista EXE

https://mborgerson.com/creating-an-executable-from-a-python-script


Installing PyInstaller

Note: Before installing PyInstaller on Windows, you will need to install PyWin32. You do not need to do this for GNU/Linux or Mac OS X systems.
PyInstaller can be installed using Pip, the Python package manager.
pip install pyinstaller

Building the Executable

Now, build the executable.
pyinstaller.exe --onefile --windowed app.py


No comments:

Post a Comment