How To Install aiohttp-wsgi-serve on Ubuntu 20.04

In this tutorial we learn how to install aiohttp-wsgi-serve on Ubuntu 20.04. aiohttp-wsgi-serve is run a WSGI application

Introduction

In this tutorial we learn how to install aiohttp-wsgi-serve on Ubuntu 20.04.

What is aiohttp-wsgi-serve

aiohttp-wsgi-serve is:

Run a WSGI application on top of asyncio event loop. This script uses Python aiohttp-wsgi module to run existing WSGI applications within the event loop without further changes.

There are three methods to install aiohttp-wsgi-serve on Ubuntu 20.04. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install aiohttp-wsgi-serve Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install aiohttp-wsgi-serve using apt-get by running the following command:

sudo apt-get -y install aiohttp-wsgi-serve

Install aiohttp-wsgi-serve Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install aiohttp-wsgi-serve using apt by running the following command:

sudo apt -y install aiohttp-wsgi-serve

Install aiohttp-wsgi-serve Using aptitude

If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Ubuntu. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install aiohttp-wsgi-serve using aptitude by running the following command:

sudo aptitude -y install aiohttp-wsgi-serve

How To Uninstall aiohttp-wsgi-serve on Ubuntu 20.04

To uninstall only the aiohttp-wsgi-serve package we can use the following command:

sudo apt-get remove aiohttp-wsgi-serve

Uninstall aiohttp-wsgi-serve And Its Dependencies

To uninstall aiohttp-wsgi-serve and its dependencies that are no longer needed by Ubuntu 20.04, we can use the command below:

sudo apt-get -y autoremove aiohttp-wsgi-serve

Remove aiohttp-wsgi-serve Configurations and Data

To remove aiohttp-wsgi-serve configuration and data from Ubuntu 20.04 we can use the following command:

sudo apt-get -y purge aiohttp-wsgi-serve

Remove aiohttp-wsgi-serve configuration, data, and all of its dependencies

We can use the following command to remove aiohttp-wsgi-serve configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge aiohttp-wsgi-serve

References

Summary

In this tutorial we learn how to install aiohttp-wsgi-serve package on Ubuntu 20.04 using different package management tools: apt, apt-get and aptitude.