How To Install python3-networking-sfc on Ubuntu 20.04

In this tutorial we learn how to install python3-networking-sfc on Ubuntu 20.04. python3-networking-sfc is OpenStack virtual network service - SFC extension OpenStack virtual network service - SFC extension

Introduction

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

What is python3-networking-sfc

python3-networking-sfc 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 3 module for the Service Function Chaining (SFC) extension.

Package: python3-networking-sfc Architecture: all Version: 10.0.0~b3~git2020032510.8417568-0ubuntu1 Priority: optional Section: universe/python Source: networking-sfc Origin: Ubuntu Maintainer: Ubuntu Developers [email protected] Original-Maintainer: PKG OpenStack [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 1420 Depends: networking-sfc-common (= 10.0.0~b3~git2020032510.8417568-0ubuntu1), python3-alembic (>= 0.8.10), python3-astroid (>= 1.6.5), python3-eventlet (>= 0.18.2), python3-netaddr (>= 0.7.18), python3-neutron (>= 2:15.0.0~), python3-neutron-lib (>= 1.18.0), python3-neutronclient (>= 1:6.7.0), python3-oslo.config (>= 1:5.2.0), python3-oslo.i18n (>= 3.15.3), python3-oslo.log (>= 3.36.0), python3-oslo.messaging (>= 5.29.0), python3-oslo.serialization (>= 2.18.0), python3-oslo.utils (>= 3.33.0), python3-paste, python3-pbr (>= 2.0.0), python3-six (>= 1.10.0), python3-sqlalchemy (>= 1.2.0), python3-stevedore (>= 1:1.20.0), python3-webob (>= 1:1.7.1), python3:any Filename: pool/universe/n/networking-sfc/python3-networking-sfc_10.0.0~b3~git2020032510.8417568-0ubuntu1_all.deb Size: 96256 MD5sum: 1478ad47390d12cee20650ac5f861ab2 SHA1: b98f554630c1adbd1fb4a6b0b0a21ee05b82c827 SHA256: d1c02829ccfd31c81d7f092592a84a71afe761fb801c7ca02c2eeaa380cff294 Homepage: http://github.com/openstack/networking-sfc Description-en: OpenStack virtual network service - SFC extension 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 3 module for the Service Function Chaining (SFC) extension.

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

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

Install python3-networking-sfc Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install python3-networking-sfc

Install python3-networking-sfc 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-sfc using aptitude by running the following command:

sudo aptitude -y install python3-networking-sfc

How To Uninstall python3-networking-sfc on Ubuntu 20.04

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

sudo apt-get remove python3-networking-sfc

Uninstall python3-networking-sfc And Its Dependencies

To uninstall python3-networking-sfc 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-sfc

Remove python3-networking-sfc Configurations and Data

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

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

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

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

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

References

Summary

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