Whenever I try to open guake it shows the following error
Traceback (most recent call last):
File "/usr/bin/guake", line 24, in
import pygtk
ImportError: No module named pygtk
How to remove this error and make guake run properly ?
Whenever I try to open guake it shows the following error
Traceback (most recent call last):
File "/usr/bin/guake", line 24, in
import pygtk
ImportError: No module named pygtk
How to remove this error and make guake run properly ?
I think your system default python is Python3.x, type
$ which python
$ which guake
/usr/bin/guake
And change the #! /usr/bin/python in /usr/bin/guake to #! /usr/bin/python2.7. Note that guake can be runed just on Python2.x, and the pygtk is just support Python2.x.