mirror of
https://github.com/python/cpython.git
synced 2024-11-30 13:24:13 +08:00
6 lines
186 B
Python
6 lines
186 B
Python
import sys, os, _tkinter
|
|
ver = str(_tkinter.TCL_VERSION)
|
|
v = os.path.join(sys.prefix, "tcl", "tcl"+ver)
|
|
if os.path.exists(os.path.join(v, "init.tcl")):
|
|
os.environ["TCL_LIBRARY"] = v
|