I’ve been using Glade and custom Python widgets successfully for some time now. After trying the Flatpak’ed Glade this broke for two reasons:
-
Installed Python dependencies installed through
pip
in my home folder ($HOME/.local/lib/python3.6/site-packages/
)aren’t found. Which makes sense after somePYTHONPATH
checks as it looks like the Flatpak comes with its own Python 3.7. -
One of my widgets uses
OsmGpsMap
(from gi.repository import OsmGpsMap
), but the installed gir file can’t be found.
For both I have a quite similar question: can I make Glade look outside the Flatpak environment for these files? Or perhaps install the dependencies in the Flatpak Python version.