ERROR: Unhandled python exception while building babl #13261
-
Hello all. I'm new to meson, much as cmake or other building tools. I am trying to build GIMP from source in Ubuntu on WSL2. In process I've been told to build and install babl using
after this I've entered
and when I tried
Is there any dependencies that should be pre-installed, or other settings that should be checked? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
This indicates that sudo meson install is trying to get a Ubuntu packaged version of meson installed to the root account (in /usr, to be specific). Which Ubuntu version are you using? Did you have to manually install a newer version of meson? Gimp needs meson 0.61.0, which should be available via The issue with sudo is discussed at https://mesonbuild.com/Getting-meson.html#installing-meson-with-pip but tl;dr if you We fixed the crash in newer versions of meson so that instead it just tells you you tried to run an incompatible version of meson. :) |
Beta Was this translation helpful? Give feedback.
This indicates that sudo meson install is trying to get a Ubuntu packaged version of meson installed to the root account (in /u…