I have learned on CS50 that we can configure a Library to use SQLite database, on CS50 IDE, by doing this:
from cs50 import SQL
db = SQL("sqlite:///finance.db")
Now I would like to do it in Visual Studio Code. But terminal returns me the following error: ModuleNotFoundError: No module named 'cs50'
.
What do I have to do to read a SQLite database on VSCode?