I am new to coding and made a stupid mistake - I installed a requirements-package from GitHub (pip install -r requirements.txt) without setting up a virtual python environment for it on my system (Mac, VScode).
Now my Tkinter module stopped working (it still opens GUI windows, but the windows are distorted, empty or without function).
I can not pip uninstall Tkinter, it always says "WARNING: Skipping tkinter as it is not installed.", I cannot update it either. I also tried to manually locate the Tkinter-module and deleting it, but that didn't remove it properly and I still could not re-install it. As far as I understood now, Tkinter is an integral part of the python package...
Is there a way to fix this without having to set up my whole environment anew?
I apologize for my stupidity.
Thank You guys!