Internet Explorer is no longer supported. We recommend upgrading to Chrome, Firefox, Safari, or Microsoft Edge browser.
This website uses cookies.
By continuing to browse, you accept our use of cookies as explained in our Privacy Policy.

Open your Zsh configuration: nano ~/.zshrc Add this line: export PATH=$PATH:/opt/gradle/gradle-8.x/bin Apply changes: source ~/.zshrc Optimizing Gradle for Apple Silicon

Do you prefer using an (like IntelliJ) or the Command Line ?

If you are a professional developer who needs to switch between different Gradle versions for various projects, SDKMAN! is the superior choice. curl -s "https://sdkman.io" | bash Open a new terminal window. Install Gradle: sdk install gradle Check the version: gradle -v

If you get a permission error when running Gradle, try changing the ownership of the installation folder or using chmod +x on the bin files.

💡 With SDKMAN!, you can install a specific version by adding it to the command, such as sdk install gradle 8.5 . Method 3: The Manual Download

If you prefer to manage your binaries manually, you can download the distribution directly from the source. Go to the Gradle Releases page.

Homebrew is the most popular package manager for macOS and is fully optimized for Apple Silicon. Update Homebrew: brew update Install Gradle: brew install gradle Verify Installation: gradle -v

Homebrew automatically handles the symlinking and path configuration, making this the "set it and forget it" option. Method 2: The Flexible Way (SDKMAN!)