我一直在寻找阅读有关此主题的各种建议的时间,所以请不要过快地投票给我。我能找到最接近解决方案的地方是:Tkinter: "Python may not be configured for Tk"。 但麻烦的是,他们并没有真正解释如何为Windows获取它。或者确切地修改setup.py文件的哪个部分。或者要修改哪个设置,我在不同的位置有两个设置。如果我做一些无知的事情,我正在寻找一些坚实的建议,没有严厉的评论。请帮忙......轻轻一点。
>>> import Tkinter
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "C:\csvn\Python25\lib\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
编辑Johnathan:
>>> import sys
>>> print(sys.executable)
C:\csvn\Python25\python.exe
>>> print(sys.version)
2.7.1 (r271:86832, Jan 5 2016, 01:37:08) [MSC v.1600 64 bit (AMD64)]
>>> print(sys.path)
['', 'C:\\csvn\\Python25\\lib\\site-packages\\setuptools-18.0-py2.7.egg', 'C:\\c
svn\\Python25\\python27.zip', 'C:\\csvn\\Python25\\DLLs', 'C:\\csvn\\Python25\\l
ib', 'C:\\csvn\\Python25\\lib\\plat-win', 'C:\\csvn\\Python25\\lib\\lib-tk', 'C:
\\csvn\\Python25', 'C:\\csvn\\Python25\\lib\\site-packages', 'C:\\csvn\\Python25
\\lib\\site-packages\\win32', 'C:\\csvn\\Python25\\lib\\site-packages\\win32\\li
b', 'C:\\csvn\\Python25\\lib\\site-packages\\Pythonwin']
>>>
答案 0 :(得分:0)
你的标题是python2.7,但你的错误信息是python2.5 ...我猜你是不小心运行了错误的python安装。