Python Tkinter Tk/Tcl 使用问题
我正在使用 Python Tkinter 模块中的 Tcl,如下所示。
from Tkinter import *
Tcl = Tcl().eval
Tcl("info patchlevel")
'8.3.5'
您可以看到 python 选择了 Tcl 版本 8.3。
但我的系统中也有 tcl8.4。 现在,我如何让 python 在 Tkinter 模块中选择 tcl8.4。
Tcl8.3没有Expect包,所以我不能在Python Tcl/Tk中使用Expect包。
谢谢
I am using Tcl from Python Tkinter Module like below
from Tkinter import *
Tcl = Tcl().eval
Tcl("info patchlevel")
'8.3.5'
You can see Tcl version 8.3 is selected by python.
But i also have tcl8.4 in my system.
Now,how do i make python select tcl8.4 in Tkinter module.
Tcl8.3 does not have Expect package,so i can not use Expect package in Python Tcl/Tk.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为python使用的Tcl/Tk版本是在编译时确定的。 所以你需要查看代码,根据你想要使用的 Tcl/Tk 版本重新编译 python。 也许重新编译 _tkinter.so 库也足够了,因为它是动态加载的。
I think the version of Tcl/Tk is used by python is determined at compiling time. So you need to look at the code, recompile python against the version of Tcl/Tk you want to use. Maybe recompiling the _tkinter.so library is enough too, since it's loaded dynamically.