Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I install gradle on Windows 10?

Tags:

gradle

I tried some ways with the path thing, but it did not work. When I edit the path in the System variables it opens up all the paths, not like in tutorials, where I should just put the ;%GRADLE_HOME%\bin at the end.

enter image description here

enter image description here

like image 361
WannabeHacker Avatar asked Jan 18 '16 14:01

WannabeHacker


1 Answers

Download Gradle and unzip it to where you want it installed.

Then in Windows Search, search for "System" and then select: System (Control Panel)

Click the Advanced system settings link.

Click Environment Variables

Then click New button under user variable and add GRADLE_HOME to variable name and path pointing to the root directory of unpacked files from the Gradle to variable value.

GRADLE_HOME

In System variable section select Path and then click the Edit button. In next window click New button and add path pointing to the bin directory of unpacked files from the Gradle.

Edit path variabl

like image 110
Ranuka Avatar answered Sep 28 '22 05:09

Ranuka