a primitive tkinter app that you can quickly use for various tasks. for running the code or compiling to executable use system's python interpreter instead of anaconda.
creates executables in dist/ directory
pyinstaller --windowed --clean -i icon.ico --add-data "icon.ico;." --add-data "config.json;." app.py
- make sure that icon.ico and config files (e.g. config.json) are also available at location of app.exe
- --icon / -i option will not work with onefile
pyinstaller --onefile --windowed --clean app.py
creates executables in build/ directory
python3 setup.py build
python3 setup.py bdist_msi
python3 setup.py bdist_dmg