我最近使用Homebrew安装了pygtk,试图运行以下程序:
#!/usr/bin/python3
from gi.repository import Gtk, GObject
import time
class TimerWindow(Gtk.Window):
def __init__(self):
Gtk.Window.__init__(self, title="Timer")
self.timer = Gtk.Label()
self.add(self.timer)
def update(self):
self.timer.set_text(time.strftime('%H:%M:%S'))
return True
if __name__ == "__main__":
win = TimerWindow()
win.connect("delete-event", Gtk.main_quit)
win.show_all()
GObject.timeout_add(200, win.update)
Gtk.main()
这个程序在多个Linux发行版中运行良好,但是我在使用Mac时遇到了一些麻烦。
似乎python找不到gi
包,这在我安装时很奇怪它(?)。不可否认,我对python很新,所以我可能会弄错。
运行时给出的错误如下:
File "test.py", line 2, in <module>
from gi.repository import Gtk, GObject
ImportError: No module named gi.repository
我已经在线阅读了多个如何安装库的指南,但似乎都没有
有没有人有这方面的经验,或者可以使程序在OSX上正常工作?
非常感谢
答案 0 :(得分:3)
PyGObject(gi)安装了哪个目录?该包应该已经移动到python路径,python将扫描这些目录中的模块。
我们可以使用它来获取当前的python路径:
import sys
print(sys.path)
是的,将gi包放到其中一个目录中。
python和python3有不同的路径。