I am currently attempting to deploy a flask app on heroku. For some reason it gives me the error mentioned in the title.
My requirements.txt include:
alembic==1.6.5
attrs==21.2.0
click==8.0.1
colorama==0.4.4
Flask==2.0.1
Flask-Login==0.5.0
Flask-Migrate==3.1.0
Flask-SQLAlchemy==2.5.1
greenlet==1.1.0
gunicorn==20.1.0
ipython-genutils==0.2.0
itsdangerous==2.0.1
Jinja2==3.0.1
jupyter-core==4.7.1
Mako==1.1.5
MarkupSafe==2.0.1
mysql-connector-python==8.0.26
parso==0.8.2
protobuf==3.17.3
pyparsing==2.4.7
pyrsistent==0.18.0
python-dateutil==2.8.2
python-editor==1.0.4
pywin32==301
pyzmq==22.1.0
six==1.16.0
SQLAlchemy==1.4.22
tornado==6.1
traitlets==5.0.5
wcwidth==0.2.5
Werkzeug==2.0.1
And when I try to install flask_sqlalchemy it says that requirements are already satisfied, even when using pip3.
What can I do to fix the situation?
Thanks!