GIMP won't open any more

5,405

Solution 1

Here we go:

sudo apt-get remove gimp
sudo apt-get update 
sudo apt-get purge gimp libgegl* libbabl* 
sudo apt-get install gimp 

This worked for me.

Source: http://bentwithlove.blogspot.com/2011/05/gimperror-while-loading-shared.html

And if you add the ppa

ppa:matthaeus123/mrw-gimp-svn

you can get the latest 2.7 gimp!

Solution 2

I had the ppa @Alex mentions installed, but my that gave me the same libbabl-0.0.so.0 problem like you.

If you are satisfied with gimp 2.6, the following worked for me (Ubuntu 12.04):

1) remove the matthaeus123 ppa。 As pointed out by @Eliah Kagan, the safer way to do this is:

sudo apt-get install ppa-purge
sudo ppa-purge ppa:matthaeus123/mrw-gimp-svn

2) Do something like @Alex said. I did:

sudo apt-get remove gimp
sudo apt-get update
sudo apt-get purge gimp libgegl* libbabl*
sudo apt-get autoremove
sudo apt-get install gimp 
Share:
5,405

Related videos on Youtube

akmur
Author by

akmur

Updated on September 18, 2022

Comments

  • akmur
    akmur over 1 year

    My GIMP is not opening any more, after trying to upgrade to 2.7 (I added the PPA to do that).

    I got an error when trying to upgrade that said some dependencies couldn't be solved.

    So I removed the PPA, removed GIMP altogether, and reinstalled the standard GIMP... installation went ok but now it won't open. How can I troubleshoot it?

    Invoking gimp in a Terminal gives:

    gimp: error while loading shared libraries: libbabl-0.0.so.0: cannot open shared object file: No such file or directory
    
  • Ciro Santilli OurBigBook.com
    Ciro Santilli OurBigBook.com almost 12 years
    Thanks man, I was looking for a better way to remove ppas and I didn't know that you could mark a comment as obsolete. Do you need rep for that ( I can't even vote up ='(...)? I don't seem to find how to mark as obsolete.
  • Eliah Kagan
    Eliah Kagan almost 12 years
    You may want to edit your post again, to clarify that you've presented two separated techniques (rather than one technique with two steps). Also, please note that if your original technique worked and you didn't also manually remove the PPA from your Software Sources at some point, then you were probably still using the PPA. (I'm not sure exactly what you did or what happened, so I can't edit your answer myself to clarity this).
  • Eliah Kagan
    Eliah Kagan almost 12 years
    As for flagging comments as obsolete, if your run your mouse pointer along the left side of a comment there are upvote and flag buttons; you can flag as obsolete. You need 15 reputation to flag questions and answers, but my understanding was that there's no minimum rep for flagging comments. I could be wrong about that though. I'll look into this.
  • Ciro Santilli OurBigBook.com
    Ciro Santilli OurBigBook.com almost 12 years
    My idea was to show two steps that would solve: how to get GIMP back to work (2.6 however) after adding the ppa, which broke gimp for me. You could see them as two different techniques, but I thought that they were two steps required in order need to solve the problem. As for flagging, I don't even see place to vote up down the comments, probably need some more rep.
  • Eliah Kagan
    Eliah Kagan almost 12 years
    After running the commands listed under (1), performing the commands listed under (2) should be expected to do nothing. The commands under (2) might fix the PPA version of GIMP, or might even fix the non-PPA version of GIMP, but the commands under (1) should be sufficient to downgrade GIMP from the PPA version to the non-PPA version.
  • wie5Ooma
    wie5Ooma about 4 years
    The problem occurs again with the latest version (currently 2.10.18). Removing and reinstalling GIMP as described in the answer is still the procedure to follow.