Flask/Install Flask
Appearance
< Flask
This lesson shows how to install Flask on your own system.
Readings
[edit | edit source]Multimedia
[edit | edit source]- YouTube: How to Install and Use Flask on Windows for Beginners
- YouTube: Getting Started with Flask (using VS Code)
Activities
[edit | edit source]- Install Python.
- If necessary, install or update Python from Python.org.
- Verify Python is installed by running the following command in a command prompt or terminal window:
python --version
Note: If you have both Python2 and Python3 installed, you may need to use the following command instead:
python3 --version
- Install Flask.
- Review Pypi.org: Flask. Install Flask by running the following command:
pip install flask
Note: If you have both Python2 and Python3 installed, you may need to use pip3 to install Flask:
pip3 install flask
- Review Pypi.org: Flask. Install Flask by running the following command:
- Verify Flask is installed.
- Verify Flask is installed using the following command:
flask --version
- Verify Flask is installed using the following command: