1
I have a mistake when I use Pysimplegui
import PySimpleGUI as
sg ModuleNotFoundError: No module named 'PySimpleGUI
Pysimplegui is installed correctly on the computer so much that I use it on Spyder. I can also use the Random model.
PS: I don’t really like Spyder and my computer hangs when I open both simultaneously
Try to check which interpreter or version python vscode is running, maybe in this interpreter or version it is using the library is not installed.
– Juan Caio
is in version 1.47, I do not know if lost support, but I will test in Visual Studio to see if it is right.
– kalango1
Just to emphasize that vscode shows the version of python and the interpreter that it is using at the bottom left corner of the screen, when you click on it you will see all the python versions installed on your machine and you can change to the right version that you installed the package or you can install the package in the version that vscode is using!
– Juan Caio
I was able to solve it like this: I gave Ctrl+Shift+P after Select Interpreter and put Python in version 3.7 (Conda). Apparently 3.8 does not support Pysimplegui.
– kalango1