How To Install python3-vagrantpy on Fedora 36

In this tutorial we learn how to install python3-vagrantpy in Fedora 36. python3-vagrantpy is Python bindings for interacting with Vagrant virtual machines

Introduction

In this tutorial we learn how to install python3-vagrantpy on Fedora 36.

What is python3-vagrantpy

VagrantPy is a python module that provides a thin wrapper around the vagrant command line executable, allowing programmatic control of Vagrant virtual machines (boxes).

We can use yum or dnf to install python3-vagrantpy on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install python3-vagrantpy.

Install python3-vagrantpy on Fedora 36 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

After updating yum database, We can install python3-vagrantpy using dnf by running the following command:

sudo dnf -y install python3-vagrantpy

Install python3-vagrantpy on Fedora 36 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

After updating yum database, We can install python3-vagrantpy using yum by running the following command:

sudo yum -y install python3-vagrantpy

How To Uninstall python3-vagrantpy on Fedora 36

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

sudo dnf remove python3-vagrantpy

python3-vagrantpy Package Contents on Fedora 36

/usr/lib/python3.10/site-packages/vagrant
/usr/lib/python3.10/site-packages/vagrant/__init__.py
/usr/lib/python3.10/site-packages/vagrant/__pycache__
/usr/lib/python3.10/site-packages/vagrant/__pycache__/__init__.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/vagrant/__pycache__/__init__.cpython-310.pyc
/usr/lib/python3.10/site-packages/vagrant/__pycache__/compat.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/vagrant/__pycache__/compat.cpython-310.pyc
/usr/lib/python3.10/site-packages/vagrant/__pycache__/test.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/vagrant/__pycache__/test.cpython-310.pyc
/usr/lib/python3.10/site-packages/vagrant/compat.py
/usr/lib/python3.10/site-packages/vagrant/test.py
/usr/lib/python3.10/site-packages/vagrantpy-0.6.0-py3.10.egg-info
/usr/lib/python3.10/site-packages/vagrantpy-0.6.0-py3.10.egg-info/PKG-INFO
/usr/lib/python3.10/site-packages/vagrantpy-0.6.0-py3.10.egg-info/SOURCES.txt
/usr/lib/python3.10/site-packages/vagrantpy-0.6.0-py3.10.egg-info/dependency_links.txt
/usr/lib/python3.10/site-packages/vagrantpy-0.6.0-py3.10.egg-info/top_level.txt
/usr/share/doc/python3-vagrantpy
/usr/share/doc/python3-vagrantpy/README.md
/usr/share/licenses/python3-vagrantpy
/usr/share/licenses/python3-vagrantpy/LICENSE.txt

References

Summary

In this tutorial we learn how to install python3-vagrantpy on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).