No description
Find a file
2025-05-16 14:27:44 -07:00
app Fix caching error from out-of-order manifest download 2025-05-16 14:27:44 -07:00
.gitignore Init repo 2025-05-15 17:21:36 -07:00
main.py Remove comments 2025-05-16 00:15:18 -07:00
README.md Fix caching error from out-of-order manifest download 2025-05-16 14:27:44 -07:00
requirements.txt Install improvements 2025-05-15 20:11:38 -07:00

Messing around with python GUI

Trying to get some GUI experience using python and Destiny manifest files.

Prereq

tkinter required by pysimplegui

linux

sudo apt install python3-tk

windows

installed with python installer

macos

Requires homebrew already installed. ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" brew install python3 brew install python-tk

PySimpleGUI

python -m pip install --upgrade --extra-index-url https://PySimpleGUI.net/install PySimpleGUI

python requirements

pip install -r requirements.txt

PySimpleGUI

Special things required by PySimpleGUI but should be included in requirements.txt during normal install. This is mostly for documentation. -- PySimpleGUI is now located on a private PyPI server. Please add to your pip command: -i https://PySimpleGUI.net/install

The version you just installed should uninstalled: python -m pip uninstall PySimpleGUI python -m pip cache purge

Then install the latest from the private server: python -m pip install --upgrade --extra-index-url https://PySimpleGUI.net/install PySimpleGUI

You can also force a reinstall using this command and it'll install the latest regardless of what you have installed currently python -m pip install --force-reinstall --extra-index-url https://PySimpleGUI.net/install PySimpleGUI