How To Install geany on CentOS 7

In this tutorial we learn how to install geany on CentOS 7. geany is A fast and lightweight IDE using GTK3

Introduction

In this tutorial we learn how to install geany on CentOS 7.

What is geany

Geany is a small and fast integrated development environment with basic features and few dependencies to other packages or Desktop Environments. Some features - Syntax highlighting - Code completion - Code folding - Construct completion/snippets - Auto-closing of XML and HTML tags - Call tips - Support for Many languages like C, Java, PHP, HTML, Python, Perl, Pascal - symbol lists and symbol name auto-completion - Code navigation - Simple project management - Plugin interface

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

Install geany on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

After updating yum database, We can install geany using yum by running the following command:

sudo yum -y install geany

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

sudo dnf -y install geany

How To Uninstall geany on CentOS 7

To uninstall only the geany package we can use the following command:

sudo dnf remove geany

References

Summary

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