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