Edit: The key was using msys2. After installing Gtk3 and PyGObject following the PyGObject guide for msys2 everything worked fine. Packaging with PyInstaller and nuitka was fine.

I’ve been developing an image halftoning app for a while using GTK on Linux, thinking GTK is cross platform, and delaying testing it on Windows for quite some time.

Today I decided to finally install Windows 10 (for the first time in more than a decade) on a separate machine and see what works and what does not.

For the past few hours I’ve been through hell trying to get GTK3 to work. I’ve followed multiple guides, none of which worked, including wingtk.

Furthermore, even if I successfully compile (or install) GTK, would it be possible to package it all up using something like PyInstaller or nuitka.

At this point I’m thinking of keeping the functions and writing a whole new GUI in Tk for the Windows port, as at least that seems to work.

Am I missing something?

  • @santa
    link
    2
    edit-2
    8 months ago

    Have you looked into using pygame? Not sure how much your app is dependent on gtk3 vs. doing something graphical that can be generic.

    • @[email protected]OP
      link
      fedilink
      English
      48 months ago

      Yes, a while ago, at the beginning of the project, and eventually decided against it. GTK, despite it’s terrible documentation for python was just a more robust desktop app framework.

      I quite heavily rely on sliders, dropdown lists and a file browser and while it’s possible to do that in pygame, it’s just too clunky.