I am facing trouble whilst trying to build a programme for my university's programming class. We are trying to programme an interactive database.
While trying to debug the code on Visual Studio Code, I get the following error:
No module named 'PySimpleGUI'
File "C:\Users\luka\Desktop\Programming\Programming_Project.py", line 3, in <module>
import PySimpleGUI as sg
I am trying to run a programme that runs both PySimpleGui, as well as an adaptor for postgresql. The adaptor is called psycopg2. I have installed both of them successfully through the Command Prompt. Nonetheless, I keep getting the problem over and over again.
Could anyone give me any suggestions on what could be done here to solve this issue?