-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsandbox.py
26 lines (21 loc) · 879 Bytes
/
sandbox.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import sys
import os
def check_tcl_tk_installation():
try:
import tkinter
tcl_path = tkinter.Tcl().eval('info library')
tk_path = tkinter.Tk().tk.eval('info library')
print("Tkinter erfolgreich importiert.")
print(f"Tcl Bibliothek Pfad: {tcl_path}")
print(f"Tk Bibliothek Pfad: {tk_path}")
# Überprüfen, ob die Pfade existieren
if os.path.exists(tcl_path) and os.path.exists(tk_path):
print("Tcl und Tk sind korrekt installiert.")
else:
print("Tcl oder Tk sind nicht korrekt installiert.")
except ImportError:
print("Tkinter konnte nicht importiert werden. Tcl/Tk ist möglicherweise nicht installiert.")
except Exception as e:
print(f"Ein Fehler ist aufgetreten: {e}")
if __name__ == "__main__":
check_tcl_tk_installation()