0

I installed "Paint Supreme 3d - Snap" using the software center in Xubuntu and while opening it only shows the splash screen and doesn't load. It doesn't open. How to make it open to use it. Please help.

Here is the error message when running program from command line:

Gtk-Message: Failed to load module "gail" Gtk-Message: Failed to load module "atk-bridge" 

1 Answers1

0

Looking at the error message, it looks like you have some missing modules that need to be installed: "gail" and "atk-bridge"

So we use apt-cache to locate the relevant packages:

apt-cache search gail

This gives us a few options, but the one we are looking for is:

libgail-common - GNOME Accessibility Implementation Library -- common modules

And now the atk-bridge:

apt-cache search atk-bridge

Which returns something we want:

libatk-bridge2.0-0 - AT-SPI 2 toolkit bridge - shared library

Now that we know what packages you need, time to install:

sudo apt install libgail-common libatk-bridge2.0-0

You should now have the required modules to run your program. Enjoy!