在 WSL 上的 bash 上安装 pygtk

在 WSL 上的 bash 上安装 pygtk

pip install pygtk不起作用并且失败:

Complete output from command python setup.py egg_info:
********************************************************************
* Building PyGTK using distutils is only supported on windows. *
* To build PyGTK in a supported way, read the INSTALL file.    *
********************************************************************

----------------------------------------

我只知道这会被标记为重复,但这是不同的,它在 WSL 上。并且提到的解决方案这里不工作?

怎么会这么难呢?PyGTK 到底托管在哪里?

答案1

对象

如果您想为 GNOME 编写 Python 应用程序或使用 GTK+ 编写 Python GUI 应用程序,那么 PyGObject 是最佳选择。

显然,PyGTK 是通过 PyGObject 提供的,可以使用以下命令安装:

sudo apt install python-gi python-gi-cairo python3-gi python3-gi-cairo gir1.2-gtk-3.0

相关内容