我使用的是预装了 Python 2.7.3 的 Ubuntu 11.10。
我通过 apt-get install 安装了 python3 包和 python3-tk 包,它们一起“开箱即用”。
但是虽然我已经安装了 python-tk 包,但我不知道如何让 Python2.7 看到它。当我尝试导入它时,我收到下面的错误消息。
import Tkinter
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/usr/local/lib/python2.7/lib-tk/Tkinter.py", line 39, in <module>
import _tkinter # If this fails your Python may not be configured for Tk
ImportError: No module named _tkinter
编辑:我还基于Python 2.7.3 中未识别的 Python-tk 包运行以下内容,并得到:
$ file /usr/lib/libtk8.5.so.0
/usr/lib/libtk8.5.so.0: ELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, stripped
$ uname -a
Linux bugbot 3.0.0-23-generic-pae #39-Ubuntu SMP Thu Jul 19 19:39:19 UTC 2012 i686 i686 i386 GNU/Linux