I am using Python 2.7 on windows I want to install a software called febrl on python which requires pygtk.glade I have installed all the modules that were specified in the software manual, especially PYGTK all-in-one but i get an error when i try to import pygtk.glade (i have no error when i do : import pygtk)
import pygtk.glade
Traceback (most recent call last):
File "<console>", line 1, in <module>
ImportError: No module named glade
Is there a way to install glade for python on windows? Thank you
By running
pip search gladeI get thisI am pretty sure doing either
of
will solve it. But then again you are on windows so it really depends.