web-dev-qa-db-ja.com

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
Lucidnonsense

from PyGObject

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
1
jackw11111