Installing SQLA (and Flask and WTForms) in a virtual environment (venv) using VSCode

Published: 26 October 2023
on channel: Thomas Blum
51
2

In this video we look at setting up a virtual environment (venv) in Visual Studio Code that already has a python extension in place. Then we activate that venv (with a PowerShell script -- after giving ourselves permission to run such a script). Then in that venv we install Flask, flask-wtf, and sqlalchemy. Relevant commands include
python -m venv venv
Set-ExecutionPolicy -Scope CurrentUser RemoteSigned (in PowerShell ISE)
Scripts/activate
cd venv
pip install Flask
pip install flask-wtf
pip install SQLAlchemy
python
import sqlalchemy
sqlalchemy.__version__
exit()


Watch video Installing SQLA (and Flask and WTForms) in a virtual environment (venv) using VSCode online without registration, duration hours minute second in high quality. This video was added by user Thomas Blum 26 October 2023, don't forget to share it with your friends and acquaintances, it has been viewed on our site 51 once and liked it 2 people.