Home > Mobile >  M1 Mac VSCode Python not running with global interpreter
M1 Mac VSCode Python not running with global interpreter

Time:06-06

(M1 MBA 2020, MacOS 12.3.1) So inside of VSCode, when I select my interpreter as Python 3.8.9 from my usr/local/bin Tkinter runs as I want it to. This is the working interpreter

Here is the running code for reference.

Running Code

The problem arises when I am trying to use the Global Python 3.8.9 interpreter (usr/bin/python3). When the code runs, the application ends up looking like this.

not working tkinter

Additionally, when I run the code the terminal reads the following:

DEPRECATION WARNING: The system version of Tk is deprecated and may be removed in a future release. Please don't rely on it. Set TK_SILENCE_DEPRECATION=1 to suppress this warning.

How is it possible for me to fix this error? Or update my global Tkinter version without straying away from python 3.8.9. Furthermore if any more info is needed I'll be happy to provide, sorry I'm new to this stuff

  • Related