How To Install python3-networking-arista on Ubuntu 20.04

In this tutorial we learn how to install python3-networking-arista on Ubuntu 20.04. python3-networking-arista is OpenStack virtual network service - Arista plugin OpenStack virtual network service - Arista plugin

Introduction

In this tutorial we learn how to install python3-networking-arista on Ubuntu 20.04.

What is python3-networking-arista

python3-networking-arista is:

Neutron provides an API to dynamically request and configure virtual networks. These networks connect “interfaces” from other OpenStack services (such as vNICs from Nova VMs). The Neutron API supports extensions to provide advanced network capabilities, including QoS, ACLs, and network monitoring.

This package provides the Python files for the Arista plugin.

Package: python3-networking-arista Architecture: all Version: 2019.1.5~git2020041316.382e8a9-0ubuntu1 Priority: optional Section: universe/python Source: networking-arista Origin: Ubuntu Maintainer: Ubuntu Developers [email protected] Original-Maintainer: Debian OpenStack [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 623 Depends: alembic (>= 0.8.10), python3-neutron (>= 2:16.0.0~), python3-neutron-lib (>= 2.0.0), python3-oslo.config (>= 1:5.2.0), python3-oslo.i18n (>= 3.15.3), python3-oslo.log (>= 3.36.0), python3-oslo.service (>= 1.24.0), python3-oslo.utils (>= 3.33.0), python3-pbr (>= 4.0.0), python3-requests (>= 2.14.2), python3-six (>= 1.10.0), python3-sqlalchemy (>= 1.2.0), python3-alembic (>= 0.8.10), python3:any Recommends: iputils-arping Breaks: python-networking-arista Replaces: python-networking-arista Filename: pool/universe/n/networking-arista/python3-networking-arista_2019.1.5~git2020041316.382e8a9-0ubuntu1_all.deb Size: 71824 MD5sum: 1c7df24f2f02d9086dc274baa13491a8 SHA1: 8417cb72ac10255d306c52f16ac1389cf2449c34 SHA256: f614a88e45f6a348da1a70bce5530e2e0ade1758bb12cca06357ff8caa655f27 Homepage: https://github.com/stackforge/networking-arista Description-en: OpenStack virtual network service - Arista plugin Neutron provides an API to dynamically request and configure virtual networks. These networks connect “interfaces” from other OpenStack services (such as vNICs from Nova VMs). The Neutron API supports extensions to provide advanced network capabilities, including QoS, ACLs, and network monitoring.

This package provides the Python files for the Arista plugin.

There are three methods to install python3-networking-arista on Ubuntu 20.04. 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-networking-arista 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-networking-arista using apt-get by running the following command:

sudo apt-get -y install python3-networking-arista

Install python3-networking-arista Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install python3-networking-arista using apt by running the following command:

sudo apt -y install python3-networking-arista

Install python3-networking-arista 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 Ubuntu. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install python3-networking-arista using aptitude by running the following command:

sudo aptitude -y install python3-networking-arista

How To Uninstall python3-networking-arista on Ubuntu 20.04

To uninstall only the python3-networking-arista package we can use the following command:

sudo apt-get remove python3-networking-arista

Uninstall python3-networking-arista And Its Dependencies

To uninstall python3-networking-arista and its dependencies that are no longer needed by Ubuntu 20.04, we can use the command below:

sudo apt-get -y autoremove python3-networking-arista

Remove python3-networking-arista Configurations and Data

To remove python3-networking-arista configuration and data from Ubuntu 20.04 we can use the following command:

sudo apt-get -y purge python3-networking-arista

Remove python3-networking-arista configuration, data, and all of its dependencies

We can use the following command to remove python3-networking-arista configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge python3-networking-arista

References

Summary

In this tutorial we learn how to install python3-networking-arista package on Ubuntu 20.04 using different package management tools: apt, apt-get and aptitude.