How To Install python38-devel on AlmaLinux 8

In this tutorial we learn how to install python38-devel in AlmaLinux 8. python38-devel is Libraries and header files needed for Python development

Introduction

In this tutorial we learn how to install python38-devel on AlmaLinux 8.

What is python38-devel

This package contains the header files and configuration needed to compile Python extension modules (typically written in C or C++), to embed Python into other programs, and to make binary distributions for Python libraries. It also contains the necessary macros to build RPM packages with Python modules and 2to3 tool, an automatic source converter from Python 2.X. If you want to build an RPM against the python38 module, you also need to install the python38-rpm-macros package.

We can use yum or dnf to install python38-devel on AlmaLinux 8. In this tutorial we discuss both methods but you only need to choose one of method to install python38-devel.

Install python38-devel on AlmaLinux 8 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

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

sudo dnf -y install python38-devel

Install python38-devel on AlmaLinux 8 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

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

sudo yum -y install python38-devel

How To Uninstall python38-devel on AlmaLinux 8

To uninstall only the python38-devel package we can use the following command:

sudo dnf remove python38-devel

References

Summary

In this tutorial we learn how to install python38-devel on AlmaLinux 8 using yum and dnf.