I have installed SQLAlchemy through the command line by:
pip install SQLAlchemy
and have also done:
pip install Flask-SQLAlchemy
I am trying to run these lines and it tells me I have an unresolved import:
from sqlalchemy import create_engine
from sqlalchemy.orm import scoped_session, sessionmaker
I have ran
>>>import sqlalchemy
>>>sqlalchemy.__version__
In the python interpreter and it says I have version 1.3.17 installed so I believe that means that sqlalchemy is installed correctly but VS Code does not see it for some reason.
Any help is appreciated.