gradlew command not found - Almalinux

Page content

Installing Gradle on AlmaLinux

In this tutorial, we will guide you through the process of installing Gradle on AlmaLinux.

What is Gradle?

Gradle is a powerful build automation tool that is primarily used for Java projects, but it can also be used for other languages such as C++, Python, and more. Gradle simplifies the process of building, testing, and deploying applications by providing a flexible and efficient build system.

Why Install Gradle on AlmaLinux?

By installing Gradle on AlmaLinux, you can streamline your development workflow, automate repetitive tasks, and manage dependencies efficiently. Gradle’s declarative approach to defining build configurations makes it easy to adapt to different project requirements and scales well from small to large projects.

Installation Steps

Follow these steps to install Gradle on AlmaLinux:

  1. Update Package Repository: Before installing Gradle, it’s a good practice to update the package repository on AlmaLinux. Run the following command in your terminal:

    sudo dnf update
    
  2. Install Java Development Kit (JDK): Gradle requires JDK to be installed on your system. If you don’t have JDK installed, you can install it using the following command:

    sudo dnf install java-11-openjdk
    
  3. Download Gradle Binary: Visit the Gradle downloads page and copy the link to the latest version of Gradle.

  4. Install Gradle: Use wget to download the Gradle binary and then extract it to the desired location. Replace GRADLE_VERSION and GRADLE_URL with the version number and download link you copied earlier:

    wget GRADLE_URL
    sudo mkdir /opt/gradle
    sudo unzip -d /opt/gradle GRADLE_VERSION.zip
    
  5. Set Environment Variables: To make Gradle accessible from anywhere in your system, you need to set the PATH variable. Edit the .bashrc file and add the following lines:

    export PATH=$PATH:/opt/gradle/GRADLE_VERSION/bin
    
  6. Verify Installation: To verify that Gradle has been successfully installed, run the following command:

    gradle -v
    

Congratulations! You have successfully installed Gradle on AlmaLinux and are now ready to boost your development projects.

Conclusion

In conclusion, installing Gradle on AlmaLinux provides you with a powerful build automation tool that can enhance your development workflow and productivity. By leveraging Gradle’s capabilities, you can efficiently manage your project dependencies, build configurations, and more.


Open-source software plays a crucial role in the tech industry by fostering collaboration, innovation, and transparency. It enables individuals and organizations to access, modify, and distribute software freely, leading to the development of robust and reliable solutions. Embracing open-source software, like Gradle, not only benefits developers and businesses but also contributes to the overall growth and advancement of technology.

Start harnessing the power of open-source software today and explore the endless possibilities it offers for your projects and initiatives.