How To Install arduino-doc on CentOS 7

In this tutorial we learn how to install arduino-doc on CentOS 7. arduino-doc is Documentation for the Arduino micro-controller platform

Introduction

In this tutorial we learn how to install arduino-doc on CentOS 7.

What is arduino-doc

Arduino is an open-source electronics prototyping platform based on flexible, easy-to-use hardware and software. It’s intended for artists, designers, hobbyists, and anyone interested in creating interactive objects or environments. This package contains reference documentation.

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

Install arduino-doc on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

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

sudo yum -y install arduino-doc

Install arduino-doc 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 arduino-doc using dnf by running the following command:

sudo dnf -y install arduino-doc

How To Uninstall arduino-doc on CentOS 7

To uninstall only the arduino-doc package we can use the following command:

sudo dnf remove arduino-doc

References

Summary

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