How To Install python-ntlm on Debian 9

In this tutorial we learn how to install python-ntlm on Debian 9. python-ntlm is Python library that provides NTLM support

Introduction

In this tutorial we learn how to install python-ntlm on Debian 9.

What is python-ntlm

python-ntlm is:

Python library that provides NTLM support, including an authentication handler for urllib2 (includes python-ntlm-fixed patch). This package allows Python clients running on any operating system to provide NTLM authentication to a supporting server. python-ntlm is probably most useful on platforms that are not Windows, since on Windows it is possible to take advantage of platform-specific NTLM support.

There are three methods to install python-ntlm 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-ntlm 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-ntlm using apt-get by running the following command:

sudo apt-get -y install python-ntlm

Install python-ntlm Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install python-ntlm

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

sudo aptitude -y install python-ntlm

How To Uninstall python-ntlm on Debian 9

To uninstall only the python-ntlm package we can use the following command:

sudo apt-get remove python-ntlm

Uninstall python-ntlm And Its Dependencies

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

sudo apt-get -y autoremove python-ntlm

Remove python-ntlm Configurations and Data

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

sudo apt-get -y purge python-ntlm

Remove python-ntlm configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge python-ntlm

Dependencies

python-ntlm have the following dependencies:

References

Summary

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