我有一个干净的虚拟环境
conda create --name gtk python=3.8
conda install -c conda-forge pygobject gtk3
当我添加导入 from gi.repository import Gtk
根据 PyGTK3 wiki。
PyCharm抱怨说 Cannot find reference 'Gtk' in '__init__.py'
PyCharm提供了一个自动修复功能 'Generate stubs for binary module'
这就解决了这个问题。