How To Install python-bobo on Debian 9
Introduction
In this tutorial we learn how to install python-bobo on Debian 9.
What is python-bobo
python-bobo is:
Bobo is a light-weight framework for creating WSGI web applications. It’s goal is to be easy to use and remember.
It addresses 2 problems: Mapping URLs to objects, calling objects to generate HTTP responses.
Bobo doesn’t have a templateing language, a database integration layer, or a number of other features that are better provided by WSGI middle-ware or application-specific libraries.
Bobo builds on other frameworks, most notably WSGI and WebOb.
There are three methods to install python-bobo on Debian 9. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.
Install python-bobo Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get update
After updating apt database, We can install python-bobo using apt-get by running the following command:
sudo apt-get -y install python-bobo
Install python-bobo Using apt
Update apt database with apt using the following command.
sudo apt update
After updating apt database, We can install python-bobo using apt by running the following command:
sudo apt -y install python-bobo
Install python-bobo 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 Debian. Update apt database with aptitude using the following command.
sudo aptitude update
After updating apt database, We can install python-bobo using aptitude by running the following command:
sudo aptitude -y install python-bobo
How To Uninstall python-bobo on Debian 9
To uninstall only the python-bobo package we can use the following command:
sudo apt-get remove python-bobo
Uninstall python-bobo And Its Dependencies
To uninstall python-bobo and its dependencies that are no longer needed by Debian 9, we can use the command below:
sudo apt-get -y autoremove python-bobo
Remove python-bobo Configurations and Data
To remove python-bobo configuration and data from Debian 9 we can use the following command:
sudo apt-get -y purge python-bobo
Remove python-bobo configuration, data, and all of its dependencies
We can use the following command to remove python-bobo configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge python-bobo
Dependencies
python-bobo have the following dependencies:
References
Summary
In this tutorial we learn how to install python-bobo package on Debian 9 using different package management tools: apt, apt-get and aptitude.