Also point TK_LIBRARY to the appropriate directory.
Changed the landmark to tclIndex, which should occur in both.
This commit is contained in:
parent
7497bd3e3d
commit
1378bd5b0b
|
@ -1,5 +1,6 @@
|
||||||
import sys, os, _tkinter
|
import sys, os, _tkinter
|
||||||
ver = str(_tkinter.TCL_VERSION)
|
ver = str(_tkinter.TCL_VERSION)
|
||||||
v = os.path.join(sys.prefix, "tcl", "tcl"+ver)
|
for t in "tcl", "tk":
|
||||||
if os.path.exists(os.path.join(v, "init.tcl")):
|
v = os.path.join(sys.prefix, "tcl", t+ver)
|
||||||
os.environ["TCL_LIBRARY"] = v
|
if os.path.exists(os.path.join(v, "tclIndex")):
|
||||||
|
os.environ[t.upper() + "_LIBRARY"] = v
|
||||||
|
|
Loading…
Reference in New Issue