I've recently started learning GTK+ development and installed some new packages (I don't remember which ones). Now the merge tool meld
doesn't work any more:
Cannot import: GTK+
No module named repository
This is caused by line 155 of the meld executable:
from gi.repository import Gtk
Note that I can import gi.repository
in Python 3, but it is not so simple to convert meld to Python 3.
How can I fix it?
What I've tried:
sudo apt-get install python-gobject
: Was already installed (source)