mirror of
https://github.com/alantang1977/JunTV.git
synced 2024-12-05 04:43:12 +02:00
chore:tkinter
This commit is contained in:
parent
42f4b321ab
commit
61964d477a
1 changed files with 0 additions and 13 deletions
|
@ -19,19 +19,6 @@ from hotel import HotelUI
|
||||||
from subscribe import SubscribeUI
|
from subscribe import SubscribeUI
|
||||||
from online_search import OnlineSearchUI
|
from online_search import OnlineSearchUI
|
||||||
import json
|
import json
|
||||||
from pathlib import Path
|
|
||||||
from sys import base_prefix
|
|
||||||
from os import environ
|
|
||||||
import platform
|
|
||||||
|
|
||||||
if not ("TCL_LIBRARY" in environ and "TK_LIBRARY" in environ):
|
|
||||||
try:
|
|
||||||
tk.Tk()
|
|
||||||
except tk.TclError:
|
|
||||||
tk_dir = "tcl" if platform.system() == "Windows" else "lib"
|
|
||||||
tk_path = Path(base_prefix) / tk_dir
|
|
||||||
environ["TCL_LIBRARY"] = str(next(tk_path.glob("tcl8.*")))
|
|
||||||
environ["TK_LIBRARY"] = str(next(tk_path.glob("tk8.*")))
|
|
||||||
|
|
||||||
|
|
||||||
class TkinterUI:
|
class TkinterUI:
|
||||||
|
|
Loading…
Reference in a new issue