ImportError: No module named sqlalchemy – Solution

If you want to use SQLAlchemy for Flask in a virtual environment,
you may get this error message:
ModuleNotFoundError: No module named 'flask_sqlalchemy' Solution:
Install 'flask_sqlalchemy' with activated VENV and with the internal python version of the virtual environment.
Otherwise, sqlalchemy will be installed in your root directory and not in the VENV.
.venvScriptspython.exe -m pip install flask-sqlalchemy
If you want to learn more about Flask projects with sqlalchemy, visit our current project ServerMonitor! I found the solution in this Reddit post:
https://www.reddit.com/r/flask/comments/9r0kmz/python_37_error_with_flasksqlalchemy/

Thank you morty!