How to install Flask on Ubuntu 20.04

In this tutorial guide, we are going to explore how to install the Flask framework on Ubuntu 20.04.

Flask is a microweb framework written in Python. It is classified as a microframework because it doesn’t require particular libraries or tools. It has no database abstraction layer, form validation, or any other components where pre-existing third-party libraries provide common functions.

Flask depends on jinja template engine and the Werkzeug WSGI toolkit.

Prerequisites

  • Flask need Python 3.6 and newer in order to run
  • You need to have virtual environment up an running
  • Ubuntu 20.04 server up and running.
  • Have a user with sudo privileges.

Dependencies

Flask requires the following dependencies.

  • Werkzeug. This implements WSGI which is the standard Python interface between applications and servers.
  • Jinja. It is a template language that renders the pages to your application data.
  • MarkupSafe. It escapes untrusted input when rendering templates to avoid injection attacks.
  • ItsDangerous. It securely signs data to ensure data integrity
  • Click. This is a framework for writing command line applications

Install Flask on Ubuntu 20.04

1. Run system updates

To begin our installation we need to update system repositories in order to make them up to date. To do so, use the following command on your terminal.

$ sudo apt update && apt upgrade -y
# reboot your system if need be.

2. Create a Virtual Environment

It is recommended to use a virtual environment to manage your projects while both in development and in production, this is because the more Python projects you have, the more likely that you will need to work on different versions of Python libraries. Newer versions of libraries for a certain project can bring compatibility issues in another project.

Start by creating a project directory.

$ sudo mkdir nextgentips
$ cd nextgentips
$ python3 -m venv myvenv

Python 3.8 comes preinstalled with Ubuntu 20.04. check it out

$ python3
Python 3.8.10 (default, Nov 26 2021, 20:14:08) 
[GCC 9.3.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> 

I know many will encounter this error message “The virtual environment was not created successfully because ensurepip is not available. On Debian/Ubuntu systems, you need to install the python3-venv”

# error message
 “The virtual environment was not created successfully because ensurepip is not available. On Debian/Ubuntu systems, you need to install the python3-venv”

What we need to do is to install a virtual environment first. Use the following command to create a virtual environment.

$ sudo apt install python3.8-venv

You will get the following output.

The following additional packages will be installed:
  python-pip-whl
The following NEW packages will be installed:
  python-pip-whl python3.8-venv
0 upgraded, 2 newly installed, 0 to remove and 0 not upgraded.
Need to get 1811 kB of archives.
After this operation, 2339 kB of additional disk space will be used.
Do you want to continue? [Y/n] 

Python comes bundled with the venv module to create a virtual environment.

Now if you run python3 -m venv myvenv it will run successfully.

$ python3 -m venv myvenv

3. Activate virtual environment

Before working on any project, we need to activate the virtual environment. To do so use the following command

source myvenv/bin/activate

Your output must look like this

# output
(myvenv) [email protected]:~/nextgentips# 

4. Install Flask on Ubuntu 20.04

Inside the activated virtual environment, you can now install the Flask framework. Run the following command on your terminal.

$ pip install flask

The output will look like this.

# output
Collecting flask
  Downloading Flask-2.0.2-py3-none-any.whl (95 kB)
     |████████████████████████████████| 95 kB 938 kB/s 
Collecting Jinja2>=3.0
  Downloading Jinja2-3.0.3-py3-none-any.whl (133 kB)
     |████████████████████████████████| 133 kB 4.7 MB/s 
Collecting Werkzeug>=2.0
  Downloading Werkzeug-2.0.2-py3-none-any.whl (288 kB)
     |████████████████████████████████| 288 kB 21.9 MB/s 
Collecting click>=7.1.2
  Downloading click-8.0.3-py3-none-any.whl (97 kB)
     |████████████████████████████████| 97 kB 4.2 MB/s 
Collecting itsdangerous>=2.0
  Downloading itsdangerous-2.0.1-py3-none-any.whl (18 kB)
Collecting MarkupSafe>=2.0
  Downloading MarkupSafe-2.0.1-cp38-cp38-manylinux2010_x86_64.whl (30 kB)
Installing collected packages: MarkupSafe, Jinja2, Werkzeug, click, itsdangerous, flask
Successfully installed Jinja2-3.0.3 MarkupSafe-2.0.1 Werkzeug-2.0.2 click-8.0.3 flask-2.0.2 itsdangerous-2.0.1

You can check the version of Flask you are running with the following command.

$ flask --version
Python 3.8.10
Flask 2.0.2
Werkzeug 2.0.2

I am running Python 3.8.10 which comes preinstalled with Ubuntu 20.04, you don’t need to install it.

5. Test Flask

Let’s write one program

from flask import Flask

app = Flask(__name__)

@app.route("/")
def hello_Nextgentips():
    return "

Hello, Nextgentips!

"

NB:

  • from flask import Flask: It import flask class.
  • app = Flask(__name__): Its the name of the application module. Its required so that Flask knows where to look for resources such as static files and templates.
  • @app.route(“/”): It tell Flask what URL should trigger our function

Save as next.py.

To run the application use flask run. But first, tell Flask terminal what application it’s working on by exporting FLASK_APP

$ export FLASK_APP=next

Run the application

$ flask run
* Serving Flask app 'next' (lazy loading)
 * Environment: production
   WARNING: This is a development server. Do not use it in a production deployment.
   Use a production WSGI server instead.
 * Debug mode: off
 * Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)

5. Conclusion

Congratulations! You have installed Flask and now you are ready to jump into creating awesome projects with Flask. To get started go to Flask getting started page to start writing your Flask project. Happy that you have learned something today. Follow along for more tutorials.

About Mason Kipward

I am a technology enthusiast who loves to share gained knowledge through offering daily tips as a way of empowering others. I am fan of Linux and all other things open source.
View all posts by Mason Kipward →

Leave a Reply

Your email address will not be published.