How To Install python3-ntlm-auth on Debian 12
Introduction
In this tutorial we learn how to install python3-ntlm-auth
on Debian 12.
What is python3-ntlm-auth
python3-ntlm-auth is:
This library handles the low-level details of NTLM authentication for use in authenticating with a service that uses NTLM. It will create and parse the 3 different message types in the order required and produce a base64 encoded value that can be attached to the HTTP header.
The goal of this library is to offer full NTLM support including signing and sealing of messages as well as supporting MIC for message integrity and the ability to customise and set limits on the messages sent.
There are three methods to install python3-ntlm-auth
on Debian 12. 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-ntlm-auth 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-ntlm-auth
using apt-get
by running the following command:
sudo apt-get -y install python3-ntlm-auth
Install python3-ntlm-auth Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install python3-ntlm-auth
using apt
by running the following command:
sudo apt -y install python3-ntlm-auth
Install python3-ntlm-auth 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 python3-ntlm-auth
using aptitude
by running the following command:
sudo aptitude -y install python3-ntlm-auth
How To Uninstall python3-ntlm-auth on Debian 12
To uninstall only the python3-ntlm-auth
package we can use the following command:
sudo apt-get remove python3-ntlm-auth
Uninstall python3-ntlm-auth And Its Dependencies
To uninstall python3-ntlm-auth
and its dependencies that are no longer needed by Debian 12, we can use the command below:
sudo apt-get -y autoremove python3-ntlm-auth
Remove python3-ntlm-auth Configurations and Data
To remove python3-ntlm-auth
configuration and data from Debian 12 we can use the following command:
sudo apt-get -y purge python3-ntlm-auth
Remove python3-ntlm-auth configuration, data, and all of its dependencies
We can use the following command to remove python3-ntlm-auth
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge python3-ntlm-auth
Dependencies
python3-ntlm-auth have the following dependencies:
References
Summary
In this tutorial we learn how to install python3-ntlm-auth
package on Debian 12 using different package management tools: apt
, apt-get
and aptitude
.