mirror of
https://github.com/python/cpython.git
synced 2025-07-19 01:05:26 +00:00
4 lines
143 B
Python
4 lines
143 B
Python
import sys, os
|
|
v = os.path.join(sys.prefix, "tcl", "tcl8.3")
|
|
if os.path.exists(os.path.join(v, "init.tcl")):
|
|
os.environ["TCL_LIBRARY"] = v
|