How To Install python3-werkzeug on Ubuntu
Posted on April 1, 2023  (Last modified on May 20, 2023 )
2 minutes • 393 words
Introduction
In this tutorial we learn how to install python3-werkzeug
on Ubuntu.
What is python3-werkzeug
python3-werkzeug is:
The Web Server Gateway Interface (WSGI) is a standard interface between web server software and web applications written in Python.
Werkzeug is a lightweight library for interfacing with WSGI. It features request and response objects, an interactive debugging system and a powerful URI dispatcher. Combine with your choice of third party libraries and middleware to easily create a custom application framework.
This package contains the Python 3.x module.
There are three methods to install python3-werkzeug
on Ubuntu. We can use apt-get
, apt
and aptitude
. In the following sections we will describe each method. You can choose one of them.
Install python3-werkzeug Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install python3-werkzeug
using apt-get
by running the following command:
sudo apt-get -y install python3-werkzeug
Install python3-werkzeug Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install python3-werkzeug
using apt
by running the following command:
sudo apt -y install python3-werkzeug
Install python3-werkzeug 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 python3-werkzeug
using aptitude
by running the following command:
sudo aptitude -y install python3-werkzeug
How To Uninstall python3-werkzeug on Ubuntu
To uninstall only the python3-werkzeug
package we can use the following command:
sudo apt-get remove python3-werkzeug
Uninstall python3-werkzeug And Its Dependencies
To uninstall python3-werkzeug
and its dependencies that are no longer needed by Ubuntu, we can use the command below:
sudo apt-get -y autoremove python3-werkzeug
Remove python3-werkzeug Configurations and Data
To remove python3-werkzeug
configuration and data from Ubuntu we can use the following command:
sudo apt-get -y purge python3-werkzeug
Remove python3-werkzeug configuration, data, and all of its dependencies
We can use the following command to remove python3-werkzeug
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge python3-werkzeug
Dependencies
python3-werkzeug have the following dependencies:
References
Summary
In this tutorial we learn how to install python3-werkzeug
package on Ubuntu using different package management tools: apt, apt-get and aptitude.