How To Install asio-devel on CentOS 7

In this tutorial we learn how to install asio-devel on CentOS 7. asio-devel is Header files for asio

Introduction

In this tutorial we learn how to install asio-devel on CentOS 7.

What is asio-devel

Header files you can use to develop applications with asio. The asio package contains a cross-platform C++ library for network programming that provides developers with a consistent asynchronous I/O model using a modern C++ approach.

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

Install asio-devel on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

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

sudo yum -y install asio-devel

Install asio-devel on CentOS 7 Using dnf

If you don’t have dnf installed you can install DNF on CentOS 7 first. Update yum database with dnf using the following command.

sudo dnf makecache

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

sudo dnf -y install asio-devel

How To Uninstall asio-devel on CentOS 7

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

sudo dnf remove asio-devel

References

Summary

In this tutorial we learn how to install asio-devel on CentOS 7 using yum and dnf.