How To Install python-zope.testbrowser on Debian 9
Introduction
In this tutorial we learn how to install python-zope.testbrowser on Debian 9.
What is python-zope.testbrowser
python-zope.testbrowser is:
Provides an easy-to-use programmable web browser with special focus on testing. It is used in Zope, but it’s not Zope specific at all. For instance, it can be used to test or otherwise interact with any web site.
There are three methods to install python-zope.testbrowser 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-zope.testbrowser 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-zope.testbrowser using apt-get by running the following command:
sudo apt-get -y install python-zope.testbrowser
Install python-zope.testbrowser Using apt
Update apt database with apt using the following command.
sudo apt update
After updating apt database, We can install python-zope.testbrowser using apt by running the following command:
sudo apt -y install python-zope.testbrowser
Install python-zope.testbrowser 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-zope.testbrowser using aptitude by running the following command:
sudo aptitude -y install python-zope.testbrowser
How To Uninstall python-zope.testbrowser on Debian 9
To uninstall only the python-zope.testbrowser package we can use the following command:
sudo apt-get remove python-zope.testbrowser
Uninstall python-zope.testbrowser And Its Dependencies
To uninstall python-zope.testbrowser and its dependencies that are no longer needed by Debian 9, we can use the command below:
sudo apt-get -y autoremove python-zope.testbrowser
Remove python-zope.testbrowser Configurations and Data
To remove python-zope.testbrowser configuration and data from Debian 9 we can use the following command:
sudo apt-get -y purge python-zope.testbrowser
Remove python-zope.testbrowser configuration, data, and all of its dependencies
We can use the following command to remove python-zope.testbrowser configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge python-zope.testbrowser
Dependencies
python-zope.testbrowser have the following dependencies:
- python2.6
- python
- python
- python-mechanize
- python-pkg-resources
- python-zope.interface
- python-zope.schema
- python-tz
- python-webtest
References
Summary
In this tutorial we learn how to install python-zope.testbrowser package on Debian 9 using different package management tools: apt, apt-get and aptitude.