我使用Debian 6.04和Python 2.7
我編譯的Python 2.7,(./ configure時,使,使安裝)在控制檯
:如何在python2.7中安裝gtk?
>python2.7
Python 2.7.3 (default, Jul 28 2012, 16:54:06)
[GCC 4.4.5] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import gtk
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named gtk
如何安裝GTK在Python 2.7?
在Python 2.6:
[email protected]:~$ python
Python 2.6.6 (r266:84292, Dec 27 2010, 00:02:40)
[GCC 4.4.5] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import gtk
>>> import pygtk
>>> import gobject
請不要做'須藤PIP install'您的系統上(如一些答案的建議)。它繞過了主包管理系統,這在升級時會變得令人頭疼。要麼使用virtualenv,要麼使用標準debian版本庫中提供的pygtk版本,並使用apt-get版本。你爲什麼編譯Python? 2.7沒有打包在Debian中? – 2012-07-28 15:43:45