How To Install auditwheel on Fedora 36
Introduction
In this tutorial we learn how to install auditwheel
on Fedora 36.
What is auditwheel
auditwheel is a command-line tool to facilitate the creation of Python wheel packages for Linux (containing pre-compiled binary extensions) that are compatible with a wide variety of Linux distributions, consistent with the PEP 600 manylinux_x_y, PEP 513 manylinux1, PEP 571 manylinux2010 and PEP 599 manylinux2014 platform tags. auditwheel show (beyond the libraries included in the manylinux policies), and checks the extension modules for the use of versioned symbols that exceed the manylinux ABI. auditwheel repair itself, and automatically modifies the appropriate RPATH entries such that these libraries will be picked up at runtime. This accomplishes a similar result as if the libraries had been statically linked without requiring changes to the build system. Packagers are advised that bundling, like static linking, may implicate copyright concerns.
We can use yum
or dnf
to install auditwheel
on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install auditwheel.
Install auditwheel on Fedora 36 Using dnf
Update yum database with dnf
using the following command.
After updating yum database, We can install auditwheel
using dnf
by running the following command:
Install auditwheel on Fedora 36 Using yum
Update yum database with yum
using the following command.
After updating yum database, We can install auditwheel
using yum
by running the following command:
How To Uninstall auditwheel on Fedora 36
To uninstall only the auditwheel
package we can use the following command:
auditwheel Package Contents on Fedora 36
References
Summary
In this tutorial we learn how to install auditwheel
on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).