未找到 Python3 GTK 模块 gi

未找到 Python3 GTK 模块 gi

我遵循了以下安装指南: https://pygobject.readthedocs.io/en/latest/getting_started.html

然后我用“2.1.简单示例”测试了该教程 https://python-gtk-3-tutorial.readthedocs.io/en/latest/introduction.html#simple-example

python3 ./my.py失败如下:

File "./my.py", line 1, in <module>
import gi
ModuleNotFoundError: No module named 'gi'

那么我该怎么做才能使导入成功?


描述:Ubuntu 16.04.6 LTS

答案1

您需要安装python3的gi模块,如下所示:

sudo apt install python3-gi

您也可以通过 pip3 安装它(如果 pip3 已经安装),但请注意模块名称不同:

pip3 install --user pgi

您需要更改所有引用前列腺素

相关内容