I’m trying to run NIK Collection with GIMP 2.10 (flatpak version). I have modified shellout script which works very well with a normal installed developer version of GIMP 2.9.9.
This script is also recognized by GIMP 2.10, but if I want to start one of the plugins with this script I get an error message:
„OSError: [Errno 2] No such file or directory“
Here is the error console output:
Traceback (most recent call last):
File “/app/lib/gimp/2.0/python/gimpfu.py”, line 740, in response dialog.res = run_script(params)
File “/app/lib/gimp/2.0/python/gimpfu.py”, line 361, in run_script return apply(function, params)
File “/home/s7habo/.config/GIMP/2.10/plug-ins/ShellOut.py”, line 137, in plugin_main child = subprocess.Popen(args, shell=False)
File “/usr/lib/python2.7/subprocess.py”, line 711, in init errread, errwrite)
File “/usr/lib/python2.7/subprocess.py”, line 1343, in _execute_child raise child_exception
This seems to be some problem with paths but I dont understand what file or directory is missing
I unfortunately don’t have any knowledge about python, but maybe some of you have some idea what to do?
Here is my modified Shellout script:
ShellOut.py (6,1 KB)
Thx.