install gradle on ubuntu

sudo apt update
sudo apt install openjdk-8-jdk -y
java -version

wget https://services.gradle.org/distributions/gradle-5.0-bin.zip -P /tmp
sudo unzip -d /opt/gradle /tmp/gradle-*.zip
ls /opt/gradle/gradle-5.0
sudo nano /etc/profile.d/gradle.sh

####/etc/profile.d/gradle.sh
export GRADLE_HOME=/opt/gradle/gradle-5.0
export PATH=${GRADLE_HOME}/bin:${PATH}
## save and exit

source /etc/profile.d/gradle.sh
gradle -v

3.86
7
Kozuch 80 points

                                    # Enter the following commands to install OpenJDK 11 :
sudo apt update
sudo apt install openjdk-11-jdk

# Verify the Java installation by printing the Java version :
java -version

# Downloading Gradle
wget https://services.gradle.org/distributions/gradle-${VERSION}-bin.zip -P /tmp
sudo unzip -d /opt/gradle /tmp/gradle-${VERSION}-bin.zip

sudo ln -s /opt/gradle/gradle-${VERSION} /opt/gradle/latest

# Setting up the Environment Variables
sudo cat << EOF > /etc/profile.d/gradle.sh
export GRADLE_HOME=/opt/gradle/latest
export PATH=${GRADLE_HOME}/bin:${PATH}
EOF

# Make the script executable:
sudo chmod +x /etc/profile.d/gradle.sh
# Load the environment variables in the current shell session using the source command:
source /etc/profile.d/gradle.sh

gradle -v

3.86 (7 Votes)
0
Are there any code examples left?
Create a Free Account
Unlock the power of data and AI by diving into Python, ChatGPT, SQL, Power BI, and beyond.
Sign up
Develop soft skills on BrainApps
Complete the IQ Test
Relative searches
install gradle ubuntu terminal how to install gradle in linux how to install gradle in ubuntu by download gradle gradle file in ubunut download gradle ubuntu sudo apt install gradle download gradle linux apt sudo apt install gradle version install gradle on linux how to set up gradle in ubuntu gradle setup in ubuntu ubuntu isntall gradle install gradle version 6 ubuntu sudo apt-get install gradle should i install gradle in ubuntu bubuntu install gradle apt gradle install gradle linux install linux install gradle install ubuntu install gradle 7 ubuntu install graddle gradle install ubuntu commands ubuntu install gradle and gradlew install gradle in ubunut install gradlew ubuntu ubuntu download gradle setup gradle in ubuntu gradle command line install ubuntu how install gradle in linux install gradle gradle-4.7 ubuntu apt install latest gradle apt install latest version gradle ubuntu apt install gradle run gradle file from command line gradle ubuntu how to install gradle ubuntu terminal install gradle and gradle ubuntu gradle on ubuntu ubuntu install gradle gradle apt install gradle install apt install gradle command line ubuntu how to download gradle ubuntu gradlew install ubuntu linux install gradle setting up gradle on linux ubuntu gradle install ubuntu install gradle latest version ubuntu install gradle 5.3 on windows 10 install gradle 5.3 on windows install gradle 5.3 gradle tool in ubuntu install gradle 6.5 ubuntu install and set up gradle for commandline use update gradlew from 7.0 on ubuntu ubuntu java gradle terminal build ubuntu configure gradle path gradle path setup ubuntu gradle 6.8 installation in ubuntu 18.04 install gradle 6.5 install windows download gradle 6.4 usuntu install gradle 6.8 in ubuntu install gradle version 5.6.3 how to install gradle install gradle windows gradle 7 install gradle install command windows install gradle in windows how to install gradle on linux gradle install 5 versions how to install gradle 4.10 installing grub ubuntu install gradle 7 installing gradle on ubuntu gradle install in ubuntu gradle version in mac install graddle gradle versions upgrade gradle 6 windows latest version how to reinstall gradle in ubuntu install gradle for windows how to get gradle for macos latest gradle version install gradle on windows how to setup gradle gradle install windows gradle for windows gradle mac update gradle windows how to install gradil 4.0.0 install gradle linux snap install gradle version gradle upgrade ubuntu install gradle mac manually install gradle mac sdk install gradle windows intstall gradle wrapper windows intstall gradlew windows install gradle gradle android download linux install gradlew how to install gradle on mac gradle install in mac grDLE WINDOWS gradle installation in mac gradle 6.3 download https/://services.gradle.org install gradle-5.6.4 install gradle for linux apt-get install gradle gradle on ubuntu 18.04 gradle download in terminal how to install gradlew how to install gradle command line gradle latest stable version install latest version of gradle on ubuntu setup gradle ubu ubuntu add gradle to path linux how to install gradle download gradle latest version of gradle gradle version apt get gradle get current gradle version setup gradle version 5 how to update gradle using terminal gradle installing installing gradle linux source /etc/profile.d/gradle.sh download gradle for ubuntu install Gradle 5.6.3 intall gradle 4.5.1-all intall gradle 4.5.1 linux apt get install gradle gradle download installl gradle 5.x + fedora installl gradle 5.x install gradle 6.4 ubuntu installing gradle instal gradle gradle linux install gradle in ubuntu apt-get gradle install gradel in ubuntu ubuntu gradle install how to install gradle on ubuntu gradle version 6.5 download ubuntu gradle version 6.5 download ubuntu 18.04 gradle version 6.5 ubuntu 18.04 install gradle on ubuntu install gradle 6 ubuntu ubuntuinstall gradle install gradle ubuntu gradle install linux gradle install verify graddle install how to install android studio and gradle in ubuntu how to change gradle to 6.6 ubunt install version Gradle download gradle latest version install gradle how can I install gradle install gradle in linux how to install gradle in ubuntu
Made with love
This website uses cookies to make IQCode work for you. By using this site, you agree to our cookie policy

Welcome Back!

Sign up to unlock all of IQCode features:
  • Test your skills and track progress
  • Engage in comprehensive interactive courses
  • Commit to daily skill-enhancing challenges
  • Solve practical, real-world issues
  • Share your insights and learnings
Create an account
Sign in
Recover lost password
Or log in with

Create a Free Account

Sign up to unlock all of IQCode features:
  • Test your skills and track progress
  • Engage in comprehensive interactive courses
  • Commit to daily skill-enhancing challenges
  • Solve practical, real-world issues
  • Share your insights and learnings
Create an account
Sign up
Or sign up with
By signing up, you agree to the Terms and Conditions and Privacy Policy. You also agree to receive product-related marketing emails from IQCode, which you can unsubscribe from at any time.
Creating a new code example
Code snippet title
Source