OSX: importing gi from pygobject3: "ImportError: cannot import name _gi"

OSX: importing gi from pygobject3: "ImportError: cannot import name _gi"

我有一个可用的 python 程序,它使用与自制软件一起安装的 GTK3。更新我的 OSX 系统后,我现在收到错误:

import gi   
File "/usr/local/lib/python2.7/site-packages/gi/__init__.py", line 42, in <module> 
ImportError: cannot import name _gi

产生此错误的最小示例是:

# import_gi.py
import gi
print gi.__dict__

产生:

=> /usr/local/Cellar/python\@2/2.7.14_3/bin/python2 import_gi.py 
Traceback (most recent call last):
  File "import_gi.py", line 1, in <module>
    import gi
  File "/usr/local/lib/python2.7/site-packages/gi/__init__.py", line 42, in <module>
ImportError: cannot import name _gi

我试过了运行

brew reinstall pygobject3 --with-python2

未能解决问题。

有人知道可能发生的事情吗?

默认情况下,homebrew 似乎不再自动更新 python2。这解决了问题:

brew reinstall pygobject3 --with-python@2