Paint Supreme 3d not opening in Xubuntu 18.04
up vote
0
down vote
favorite
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"
graphics xubuntu snap paint
|
show 5 more comments
up vote
0
down vote
favorite
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"
graphics xubuntu snap paint
can you start the app from the command line and see post any errors you see?
– Joshua Besneatte
Aug 18 at 7:07
please tell me how to start it through command line?
– Pranaya Adhikari
Aug 18 at 7:09
open an terminal by pressingctrl
+alt
+t
and typepaintsupreme-3d
– Joshua Besneatte
Aug 18 at 7:14
The same problem is happening, even if I'm opening it through the terminal, only the first screen is showing after that the application doesn't load even waiting for a long time.
– Pranaya Adhikari
Aug 18 at 8:03
what kind of messages show up in the terminal window... that's what we want...
– Joshua Besneatte
Aug 18 at 14:59
|
show 5 more comments
up vote
0
down vote
favorite
up vote
0
down vote
favorite
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"
graphics xubuntu snap paint
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"
graphics xubuntu snap paint
graphics xubuntu snap paint
edited Sep 11 at 8:35
asked Aug 18 at 6:46
Pranaya Adhikari
84
84
can you start the app from the command line and see post any errors you see?
– Joshua Besneatte
Aug 18 at 7:07
please tell me how to start it through command line?
– Pranaya Adhikari
Aug 18 at 7:09
open an terminal by pressingctrl
+alt
+t
and typepaintsupreme-3d
– Joshua Besneatte
Aug 18 at 7:14
The same problem is happening, even if I'm opening it through the terminal, only the first screen is showing after that the application doesn't load even waiting for a long time.
– Pranaya Adhikari
Aug 18 at 8:03
what kind of messages show up in the terminal window... that's what we want...
– Joshua Besneatte
Aug 18 at 14:59
|
show 5 more comments
can you start the app from the command line and see post any errors you see?
– Joshua Besneatte
Aug 18 at 7:07
please tell me how to start it through command line?
– Pranaya Adhikari
Aug 18 at 7:09
open an terminal by pressingctrl
+alt
+t
and typepaintsupreme-3d
– Joshua Besneatte
Aug 18 at 7:14
The same problem is happening, even if I'm opening it through the terminal, only the first screen is showing after that the application doesn't load even waiting for a long time.
– Pranaya Adhikari
Aug 18 at 8:03
what kind of messages show up in the terminal window... that's what we want...
– Joshua Besneatte
Aug 18 at 14:59
can you start the app from the command line and see post any errors you see?
– Joshua Besneatte
Aug 18 at 7:07
can you start the app from the command line and see post any errors you see?
– Joshua Besneatte
Aug 18 at 7:07
please tell me how to start it through command line?
– Pranaya Adhikari
Aug 18 at 7:09
please tell me how to start it through command line?
– Pranaya Adhikari
Aug 18 at 7:09
open an terminal by pressing
ctrl
+alt
+t
and type paintsupreme-3d
– Joshua Besneatte
Aug 18 at 7:14
open an terminal by pressing
ctrl
+alt
+t
and type paintsupreme-3d
– Joshua Besneatte
Aug 18 at 7:14
The same problem is happening, even if I'm opening it through the terminal, only the first screen is showing after that the application doesn't load even waiting for a long time.
– Pranaya Adhikari
Aug 18 at 8:03
The same problem is happening, even if I'm opening it through the terminal, only the first screen is showing after that the application doesn't load even waiting for a long time.
– Pranaya Adhikari
Aug 18 at 8:03
what kind of messages show up in the terminal window... that's what we want...
– Joshua Besneatte
Aug 18 at 14:59
what kind of messages show up in the terminal window... that's what we want...
– Joshua Besneatte
Aug 18 at 14:59
|
show 5 more comments
1 Answer
1
active
oldest
votes
up vote
0
down vote
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!
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
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!
add a comment |
up vote
0
down vote
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!
add a comment |
up vote
0
down vote
up vote
0
down vote
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!
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!
answered Sep 10 at 16:20
Joshua Besneatte
1,9241923
1,9241923
add a comment |
add a comment |
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1066482%2fpaint-supreme-3d-not-opening-in-xubuntu-18-04%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
can you start the app from the command line and see post any errors you see?
– Joshua Besneatte
Aug 18 at 7:07
please tell me how to start it through command line?
– Pranaya Adhikari
Aug 18 at 7:09
open an terminal by pressing
ctrl
+alt
+t
and typepaintsupreme-3d
– Joshua Besneatte
Aug 18 at 7:14
The same problem is happening, even if I'm opening it through the terminal, only the first screen is showing after that the application doesn't load even waiting for a long time.
– Pranaya Adhikari
Aug 18 at 8:03
what kind of messages show up in the terminal window... that's what we want...
– Joshua Besneatte
Aug 18 at 14:59