How to compile python script to binary executable
Or use PyInstaller as an alternative to py2exe. Here is a good starting point. PyInstaller also lets you create executables for linux and mac… Here is how one could fairly easily use PyInstaller to solve the issue at hand: pyinstaller oldlogs.py From the tool’s documentation: PyInstaller analyzes myscript.py and: Writes myscript.spec in the same folder … Read more