ofnuts' addon-on manager crashing in 2.10.2 - Printable Version +- Gimp-Forum.net (https://www.gimp-forum.net) +-- Forum: GIMP (https://www.gimp-forum.net/Forum-GIMP) +--- Forum: Extending the GIMP (https://www.gimp-forum.net/Forum-Extending-the-GIMP) +--- Thread: ofnuts' addon-on manager crashing in 2.10.2 (/Thread-ofnuts-addon-on-manager-crashing-in-2-10-2) Pages:
1
2
|
RE: ofnuts' addon-on manager crashing in 2.10.2 - Ofnuts - 05-23-2018 Any relationship to this: http://www.gimpusers.com/forums/gimp-user/20609-gimp-error RE: ofnuts' addon-on manager crashing in 2.10.2 - Kevin - 05-23-2018 I added this to the top of the code: Code: import sys I got this: Code: Sean Bogie, MareroQ, Ofnuts Windows 7 64-bit, Freshly installed GIMP 2.10.2 RE: ofnuts' addon-on manager crashing in 2.10.2 - Kevin - 05-23-2018 And I can fix it by doing the gimpfu import BEFORE the gtk import: Code: from gimpfu import * RE: ofnuts' addon-on manager crashing in 2.10.2 - rich2005 - 05-23-2018 (05-23-2018, 01:59 PM)Kevin Wrote: And I can fix it by doing the gimpfu import BEFORE the gtk import: RE: ofnuts' addon-on manager crashing in 2.10.2 - Kevin - 05-23-2018 All I've done is to get it to register in the menus, I've not tried any of the functionality. RE: ofnuts' addon-on manager crashing in 2.10.2 - rich2005 - 05-23-2018 I did try the fix in a Win7 64 bit VM latest Gimp 2.10.2 (as earlier) and that works, Windows fonts a bit peculiar as usual, load but not too keen to unload. RE: ofnuts' addon-on manager crashing in 2.10.2 - Ofnuts - 05-23-2018 Smells like a clash between two libraries/DLL. Can someone try in the Python console: Code: import platform In my 64bit VM, it seems that Gimp's Python is 32-bit. Also how many *glib*.DLL have you got, and where are they? RE: ofnuts' addon-on manager crashing in 2.10.2 - Kevin - 05-23-2018 Code: GIMP 2.10.2 Python Console In Program files/GIMP 2.10 Code: $ find . -name *glib*.dll And in AppData/Roaming/GIMP Code: ./2.10/plug-ins/gmic-gimp-qt-build/libglib-2.0-0.dll RE: ofnuts' addon-on manager crashing in 2.10.2 - Ofnuts - 05-27-2018 Reported the problem. Stay tuned for a new version that circumvents the Gimp problem (income tax weekend ....) |