Open In App

Steps to Install Geany IDE

Geany is a lightweight, high-performance Integrated Development Environment system that supports the most used programming languages, i.e  C/C++, Java, Python2.x/3/x, etc. It was developed in such a manner that it has the least dependency on other packages, thus it is quite fast, as compared to code-blocks or devc++. Special care has been taken to make it as independent as possible from a particular desktop environment such as KDE, GNOME. This article lists step-by-step instructions to download and set up Geany IDE for the Windows operating system.

Installing Geany:



Download executable installer as mentioned above.



Select whether you want to install shortcuts for geany.

Installing TDM-GCC:

To create a new installation click on “Create”.

Select between the two depending on your system architecture.

Select any desired location you want to install TDM-GCC.

Scroll down to look at the components.

Build/Compile on Geany: Below is the code to write a hello world or two number sum program on the IDE:




// C++ program to implement
// the above approach
#include <bits/stdc++.h>
using namespace std;
 
// Driver code
int main()
{
    cout << "Hello world!" << endl;
    cout << "Geany is successfully installed and "
            "integrated with its pal TDM-GCC."
         << endl;
    return 0;
}

Output
Hello world!
Geany is successfully installed and integrated with its pal TDM-GCC.

Steps to Compile Program:

Message after compilation.


Article Tags :