How To Install diveintopython-zh on Debian 9

In this tutorial we learn how to install diveintopython-zh on Debian 9. diveintopython-zh is free Python book for experienced programmers (zh translation)

Introduction

In this tutorial we learn how to install diveintopython-zh on Debian 9.

What is diveintopython-zh

diveintopython-zh is:

Dive Into Python is a free Python tutorial, written by Mark Pilgrim.

This is the translated version for Simplified Chinese users

Homepage: http://www.woodpecker.org.cn/diveintopython/

There are three methods to install diveintopython-zh 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 diveintopython-zh Using apt-get

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

sudo apt-get update

After updating apt database, We can install diveintopython-zh using apt-get by running the following command:

sudo apt-get -y install diveintopython-zh

Install diveintopython-zh Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install diveintopython-zh using apt by running the following command:

sudo apt -y install diveintopython-zh

Install diveintopython-zh 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 diveintopython-zh using aptitude by running the following command:

sudo aptitude -y install diveintopython-zh

How To Uninstall diveintopython-zh on Debian 9

To uninstall only the diveintopython-zh package we can use the following command:

sudo apt-get remove diveintopython-zh

Uninstall diveintopython-zh And Its Dependencies

To uninstall diveintopython-zh and its dependencies that are no longer needed by Debian 9, we can use the command below:

sudo apt-get -y autoremove diveintopython-zh

Remove diveintopython-zh Configurations and Data

To remove diveintopython-zh configuration and data from Debian 9 we can use the following command:

sudo apt-get -y purge diveintopython-zh

Remove diveintopython-zh configuration, data, and all of its dependencies

We can use the following command to remove diveintopython-zh configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge diveintopython-zh

Dependencies

diveintopython-zh have the following dependencies:

References

Summary

In this tutorial we learn how to install diveintopython-zh package on Debian 9 using different package management tools: apt, apt-get and aptitude.