0

安装 ActivePython 2.7.10.12 后,尝试创建 Tkinter 实例时,出现以下错误:

ActivePython 2.7.10.12 (ActiveState Software Inc.) based on
Python 2.7.10 (default, Aug 21 2015, 12:07:58) [MSC v.1500 64 bit (AMD64)] on wi
n32
Type "help", "copyright", "credits" or "license" for more information.
>>> from Tkinter import Tk
>>> root = Tk()
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "C:\Python27\lib\lib-tk\Tkinter.py", line 1814, in __init__
    self.tk = _tkinter.create(screenName, baseName, className, interactive, want
objects, useTk, sync, use)
_tkinter.TclError: Can't find a usable init.tcl in the following directories:
    C:/Python27/lib/tcl8.5 C:/lib/tcl8.5 C:/lib/tcl8.5 C:/library C:/library C:/
tcl8.5.18/library C:/tcl8.5.18/library



This probably means that Tcl wasn't installed properly.
4

1 回答 1

0

这是一个对我有用的解决方法。我复制了 2 个目录:tcl8.5and tk8.5, from C:\Python27\tclto C:\Python27\lib,然后代码运行没有任何错误。

于 2016-05-04T21:07:00.770 回答