-
Notifications
You must be signed in to change notification settings - Fork 134
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
"plug-ins must be installed in subdirectories" #50
Comments
I had the same issue. Resolved after downgrading to Gimp version 2.99.6. Download links as follow |
Thank you :-) I'll give that a try. |
I downgraded to 2.99.6 on windows. It did not get rid of this error, but it added new errors. GIMP-ML appears in the Layer menu, but running any part of it causes an error that says "inference failed" and says to look at a log file that doesn't exist. I tried both with and without gpu set on. This is the output I get: This is a development version of GIMP. Debug messages may appear here. GIMP-Warning: Bad interpreter referenced in interpreter file C:\Program Files\GIMP 2.99\lib\gimp\2.99\interpreters\gimp-script-fu-interpreter.interp: C:\Program Files\GIMP 2.99\bin\gimp-script-fu-interpreter-3.0.exe GIMP-Warning: Bad interpreter referenced in interpreter file C:\Program Files\GIMP 2.99\lib\gimp\2.99\interpreters\gimp-script-fu-interpreter.interp: C:\Program Files\GIMP 2.99\bin\gimp-script-fu-interpreter-3.0.exe GIMP-Warning: Bad interpreter referenced in interpreter file C:\Program Files\GIMP 2.99\lib\gimp\2.99\interpreters\gimp-script-fu-interpreter.interp: C:\Program Files\GIMP 2.99\bin\gimp-script-fu-interpreter-3.0.exe GIMP-Warning: Bad interpreter referenced in interpreter file C:\Program Files\GIMP 2.99\lib\gimp\2.99\interpreters\gimp-script-fu-interpreter.interp: C:\Program Files\GIMP 2.99\bin\gimp-script-fu-interpreter-3.0.exe GIMP-Warning: Bad binary format string in interpreter file C:\Program Files\GIMP 2.99\lib\gimp\2.99\interpreters\gimp-script-fu-interpreter.interp set device 'System Aggregated Pointer' to mode: disabled Failed to execute child process (No such file or directory) |
This problem is related to changes in Gimp 2.99 Basically you just follow the pattern below for each plugin .py file. I got them to install once I made the changes but do be careful about tabs/spaces as python is picky. def do_query_procedures(self): To this: def do_query_procedures(self): def do_set_i18n(self, procname): |
I did all that, every call still failed. |
This worked for me. ...there are two places the plugins will appear: The error disappeared and GIMP-ML was added to the layout menu after I made the changes to |
Thanks a lot! |
First, thank you for your hard work bringing this plugin to Gimp.
I followed the installation guide and got it to work. But after restarting my computer, ML no longer shows up in the menu, and when I start Gimp from the terminal I get the following messages:
Skipping potential plug-in '/home/username/gimpenv3/lib/python3.10/site-packages/gimpml/plugins/init.py': plug-ins must be installed in subdirectories.
Skipping potential plug-in '/home/username/gimpenv3/lib/python3.10/site-packages/gimpml/plugins/plugin_utils.py': plug-ins must be installed in subdirectories.
Any ideas what that means and how to fix it?
OS: Manjaro Linux
Gimp 2.99.12
The text was updated successfully, but these errors were encountered: