Flask/Install Flask
< Flask
This lesson shows how to install Flask on your own system.
Readings
editMultimedia
editActivities
edit- 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: