How To Install python3-magnum on Ubuntu 20.04
Introduction
In this tutorial we learn how to install python3-magnum on Ubuntu 20.04.
What is python3-magnum
python3-magnum is:
Magnum is an OpenStack project which offers container orchestration engines for deploying and managing containers as first class resources in OpenStack. It features:
- Abstractions for bays, containers, nodes, pods, replication controllers, and services
- Integration with Kubernetes and Docker for backend container technology
- Integration with Keystone for multi-tenant security
- Integration with Neutron for Kubernetes multi-tenancy network security
This package contains the Python 3 code.
Package: python3-magnum Architecture: all Version: 10.0.0~b3~git2020041013.01629398-0ubuntu1 Priority: optional Section: universe/python Source: magnum Origin: Ubuntu Maintainer: Ubuntu Developers [email protected] Original-Maintainer: Debian OpenStack [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 3538 Depends: alembic (>= 0.8.10), python3-alembic (>= 0.8.10), python3-babel (>= 2.3.4), python3-barbicanclient (>= 4.5.2), python3-cinderclient (>= 1:2.2.0), python3-cliff (>= 2.8.0), python3-cryptography (>= 2.1), python3-decorator (>= 3.4.0), python3-docker (>= 2.4.2), python3-eventlet (>= 0.18.2), python3-glanceclient (>= 1:2.8.0), python3-heatclient (>= 1.10.0), python3-iso8601 (>= 0.1.11), python3-jsonpatch (>= 1.16), python3-keystoneauth1 (>= 3.4.0), python3-keystoneclient (>= 1:3.8.0), python3-keystonemiddleware (>= 4.17.0), python3-kubernetes (>= 5.0.0), python3-marathon (>= 0.8.6), python3-netaddr (>= 0.7.18), python3-neutronclient (>= 1:6.7.0), python3-novaclient (>= 2:9.1.0), python3-octaviaclient (>= 1.6.0), python3-openstackclient, python3-oslo.concurrency (>= 3.26.0), python3-oslo.config (>= 1:5.2.0), python3-oslo.context (>= 1:2.19.2), python3-oslo.db (>= 4.27.0), python3-oslo.i18n (>= 3.15.3), python3-oslo.log (>= 3.36.0), python3-oslo.messaging (>= 5.29.0), python3-oslo.middleware (>= 3.31.0), python3-oslo.policy (>= 1.30.0), python3-oslo.reports (>= 1.18.0), python3-oslo.serialization (>= 2.18.0), python3-oslo.service (>= 1.24.0), python3-oslo.upgradecheck (>= 0.1.1), python3-oslo.utils (>= 3.33.0), python3-oslo.versionedobjects (>= 1.31.2), python3-pbr (>= 2.0.0), python3-pecan (>= 1.0.0), python3-pycadf (>= 1.1.0), python3-requests (>= 2.14.2), python3-setuptools (>= 24.0.0), python3-six (>= 1.10.0), python3-sqlalchemy (>= 1.0.10), python3-stevedore (>= 1:1.20.0), python3-taskflow (>= 2.16.0), python3-webob (>= 1:1.7.1), python3-werkzeug (>= 0.9), python3-wsme (>= 0.8.0), python3-yaml (>= 3.12), python3-pkg-resources, python3:any Filename: pool/universe/m/magnum/python3-magnum_10.0.0~b3~git2020041013.01629398-0ubuntu1_all.deb Size: 336036 MD5sum: ca33c507e9389b977023c90b2d370cb4 SHA1: f140392e9cb638a16f3394713f2b8c92d9deac68 SHA256: 049fd5e652143c69a854368a0eb4af7ec63949371a7b106a9057b3f27ece9480 Homepage: https://github.com/openstack/magnum Description-en: OpenStack containers as a service - Python 3 library Magnum is an OpenStack project which offers container orchestration engines for deploying and managing containers as first class resources in OpenStack. It features:
- Abstractions for bays, containers, nodes, pods, replication controllers, and services
- Integration with Kubernetes and Docker for backend container technology
- Integration with Keystone for multi-tenant security
- Integration with Neutron for Kubernetes multi-tenancy network security
This package contains the Python 3 code.
There are three methods to install python3-magnum 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-magnum 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-magnum using apt-get by running the following command:
sudo apt-get -y install python3-magnum
Install python3-magnum Using apt
Update apt database with apt using the following command.
sudo apt update
After updating apt database, We can install python3-magnum using apt by running the following command:
sudo apt -y install python3-magnum
Install python3-magnum 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-magnum using aptitude by running the following command:
sudo aptitude -y install python3-magnum
How To Uninstall python3-magnum on Ubuntu 20.04
To uninstall only the python3-magnum package we can use the following command:
sudo apt-get remove python3-magnum
Uninstall python3-magnum And Its Dependencies
To uninstall python3-magnum and its dependencies that are no longer needed by Ubuntu 20.04, we can use the command below:
sudo apt-get -y autoremove python3-magnum
Remove python3-magnum Configurations and Data
To remove python3-magnum configuration and data from Ubuntu 20.04 we can use the following command:
sudo apt-get -y purge python3-magnum
Remove python3-magnum configuration, data, and all of its dependencies
We can use the following command to remove python3-magnum configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge python3-magnum
References
Summary
In this tutorial we learn how to install python3-magnum package on Ubuntu 20.04 using different package management tools: apt, apt-get and aptitude.