joshpatten / PVE-VDIClient

Proxmox based VDI client
Apache License 2.0
704 stars 97 forks source link

PySimpleGUI is "dead" long live PySimpleGUI as FreeSimpleGUI #113

Open ben-ba opened 1 month ago

ben-ba commented 1 month ago

PySimpleGUI is since version 5 partial paid software and pip wouldn't install the requirement pip install "PySimpleGUI<5.0.0"

we can use the last OSS version 4 with a fork named FreeSimpleGUI

https://github.com/spyoungtech/FreeSimpleGUI

can be installed with;

pip install FreeSimpleGUI

and used by edit the vdiclient.py `- import PySimpleGUI as sg

joshpatten commented 1 month ago

Thanks for pointing this out! I'll work on getting the change implemented.