Install flask on ubuntu 20.04

$ mkdir myproject
$ cd myproject
$ python3 -m venv .venv
Before you work on your project, activate the corresponding environment:
$ . .venv/bin/activate

Install Flask

Within the activated environment, use the following command to install Flask:

$ pip install Flask

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *