Facebook PixelHow to Install and Setup CLion For C/C++ Programming | Blog | CodeWithHarry
How to Install and Setup CLion For C/C++ Programming

How to Install and Setup CLion For C/C++ Programming

"There is a number of C/C++ integrated development environments, such as Clion, Vs Code, Codeblocks, etc available on the internet. But, if you are someone who loves to use JetBrains products..."

By CodeWithHarry

Updated: 5 April 2025

Several C/C++ integrated development environments, such as CLion, VS Code, Codeblocks, etc., are available on the internet. But, if you are someone who loves to use JetBrains products, then CLion is for you. It is an IDE developed by JetBrains to run C/C++ programs. If you want to install CLion on your computer, then stick with me in this article. I guarantee you that CLion will be installed on your computer at the end of this article without any errors. Enough talk! Let’s get started:

Follow the below steps to install and set up CLion for C/C++ programming:

  1. First of all, you need to download the MinGW compiler to compile your C/C++ programs.

  2. Click here to download the MinGW compiler.

    Download MinGW

  3. Install the MinGW compiler.

    Install MinGW

  4. Now, add MinGW to the path by navigating to This PC→C:/→Program Files (x86)→MinGW-w64→i686-8.1.0-POSIX-dwarf-rt_v6-rev0→mingw32→bin.

    Add MinGW to Path

    Copy and paste the path in the environment variables. Right-click on This PC→Properties→Advanced System Settings→Environment variables.

    Environment Variables

  5. Click on the path and then Edit→New. Paste the copied path here and click ‘ok.

  6. Click here to download the CLion IDE.

    Download CLion

    CLion Setup

  7. Install the .exe file, as shown in the below animation. Do not forget to check all the checkboxes shown in the below animation:

    Install CLion

  8. Reboot your computer at the time of installation, or you can reboot it later by clicking on “I want to manually reboot later.”

    Reboot

  9. After rebooting your computer, type “CLion” on the Windows search bar and open the CLion IDE.

  10. Click on “Do not import settings.”

  11. If you have a license server or activation code, then you can easily activate it by entering them. Otherwise, you can use the trial version (free for 30 days).

  12. Click on evaluate for free. Enter your email address if you want to subscribe to the CLion newsletter.

  13. Click on the “Evaluate” button.

Evaluate CLion

  1. Now, create a new project by clicking on the “Create New Project” button and click on “C Executable.”
  2. Enter the name and the location of the project and then click on the “Create” button.

Create New Project

Project Setup

Now you are all set to run C programs on CLion IDE without any interruptions. Let’s try to run a simple C program to check if everything is working correctly or not.

Run C Program

As you can see in the above animation, the C program is running perfectly. So, that’s how you can set up and run a C program in CLion IDE with ease. If you want to learn C programming in detail with notes for free, click here to watch my C programming tutorial.

Tags

setupclionforcpp