How To Install python-zsi on Debian 9

In this tutorial we learn how to install python-zsi on Debian 9. python-zsi is Zolera Soap Infrastructure

Introduction

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

What is python-zsi

python-zsi is:

ZSI is a Python package that provides an implementation of SOAP messaging, as described in The SOAP 1.1 Specification. In particular, ZSI parses and generates SOAP messages, and converts between native Python datatypes and SOAP syntax. It can also be used to build applications using SOAP Messages with Attachments. ZSI is ``transport neutral’’, and provides only a simple I/O and dispatch framework; a more complete solution is the responsibility of the application using ZSI.

This package contains the wsdl2py tool as well as all documentation.

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

sudo apt-get -y install python-zsi

Install python-zsi Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install python-zsi

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

sudo aptitude -y install python-zsi

How To Uninstall python-zsi on Debian 9

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

sudo apt-get remove python-zsi

Uninstall python-zsi And Its Dependencies

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

sudo apt-get -y autoremove python-zsi

Remove python-zsi Configurations and Data

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

sudo apt-get -y purge python-zsi

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

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

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

Dependencies

python-zsi have the following dependencies:

References

Summary

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