I am using Pycharm, with python 3.8 and I am watching a flask tutorial for beginners. this means that I am a beginner so I might not understand every vocab or solution, however, a little research on my end will make it alright.
So the problem I am having is that I downloaded flask_sqlalchemy with the following code on the PyCharm terminal:
pip install Flask-SQLAlchemy
I thought I had been successful since the event log also said installation successful. However, when I wrote the following code:
from flask_sqlalchemy import SQLAlchemy
it reported "unresolved reference flask_sqlalchemy"
I then tried entering this in the terminal thinking it would work:
pip install -U Flask-SQLAlchemy
Nothing changed.
I tried installing SQLAlchemy to see if it would do something but it didn't. I used the following code in the terminal:
pip install SQLAlchemy
Any ideas on how to get this to work?