To know the installed version of Gradle on your computer you can run command gradle --version in Terminal or Command Line.
# gradle --version
Output:
------------------------------------------------------------
Gradle 6.8.3
------------------------------------------------------------
Build time: 2021-02-22 16:13:28 UTC
Revision: 9e26b4a9ebb910eaa1b8da8ff8575e514bc61c78
Kotlin: 1.4.20
Groovy: 2.5.12
Ant: Apache Ant(TM) version 1.10.9 compiled on September 27 2020
JVM: 11.0.10 (JetBrains s.r.o 11.0.10+9)
OS: Mac OS X 11.2.3 aarch64
If you get command not found: gradle, then you might have one of the below issues,
- Make sure Gradle is set in PATH variable: export PATH=$PATH:/opt/gradle/gradle-6.8.3/bin, check this article for more details: https://code2care.org/tutorial/installing-gradle-on-macos-gradle-tutorial
- Make sure JAVA_HOME variable is set: https://code2care.org/pages/setting-java_home-environment-variable-on-windows-operating-system

Know Installed Gradle Version
More Posts related to Gradle,
- Task is ambiguous in root project gradle-examples. Candidates are: myTask1, myTask2
- Find installed Gradle version command
- Run IntelliJ Java main method without Gradle build
- Install Gradle VS Code for Java Projects
- Fix: Invalid Gradle JDK configuration found. Could not find the required JavaSDK
- Create a Gradle Java Project in VS Code
- Generate Project Dependency tree using Gradle Command
- How to Clear Gradle Cache on Mac
- How to create Gradle Multi-Project in IntelliJ
- How to run Gradle build in offline mode
- Installing Gradle on macOS - Gradle Tutorial
- Gradle FAILURE: Build failed with an exception - Task not found in root project
- Adding Jackson dependency to Java Gradle Project
More Posts:
- Java: Convert Double to 2 Decimal Places [Examples] - Java
- List all installed packages (Formulae) in Homebrew on Mac - MacOS
- Google Local Guide Program and Perks of Contributing to Google Maps - Google
- Change label (text) color in tkinter - Python
- How to Insert an Inverted Question Mark on Mac ¿ - MacOS
- Locate MainActivity Java or Kotlin file in Android Studio - Android-Studio
- Mac turn dark mode on or off using terminal command - MacOS
- MySQL Query for Schema/Structure of a Table - MySQL