简体   繁体   English

Tkinter代码在最新的ActivePython中引发异常

[英]Tkinter code throws exception in latest ActivePython

After installing ActivePython 2.7.10.12, when trying to create a Tkinter instance, I get the following error: 安装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.

Here is a workaround that worked for me. 这是一个对我有用的解决方法。 I copied 2 directories: tcl8.5 and tk8.5 , from C:\\Python27\\tcl to C:\\Python27\\lib , and then the code ran without any error. 我从C:\\Python27\\tcl复制了两个目录: tcl8.5tk8.5C:\\Python27\\lib ,然后代码运行没有任何错误。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM