【为什么要安装Gradle?】
如果,你需要在Ubuntu中使用Macaca框架。Macaca使用的环境中需要Gradle的支持。换而言之,Gradle是保证正常使用Macaca当中的一部分。建议,使用Gradle4+的版本;否则,你会遇到一些坑。
【软件版本说明】
软件名 | 版本号 |
---|---|
Gradle | 4.4.1 |
1.一键安装Gradle的shell脚本:
apt-get update
apt-get install zip unzip
wget -P /opt https://coding.net/u/jamesz2011/p/ubuntu_lib1/git/raw/master/gradle/gradle-4.4.1-bin.zip
unzip /opt/gradle-4.4.1-bin.zip -d /opt/
export GRADLE_HOME="/opt/gradle-4.4.1"
if ! grep GRADLE_HOME="/opt/gradle-4.4.1" /etc/profile
then
echo "GRADLE_HOME=/opt/gradle-4.4.1" | sudo tee -a /etc/profile
echo "export GRADLE_HOME" | sudo tee -a /etc/profile
echo "PATH=${GRADLE_HOME}/bin:$PATH" | sudo tee -a /etc/profile
echo "export PATH" | sudo tee -a /etc/profile
fi
source /etc/profile
sudo ln -s /opt/gradle-4.4.1/bin/gradle /usr/local/bin/gradle
gradle -v
echo "install gradle is ok !!!"
2.install_gradle.sh文件地址:
3.用法:
3.1.wget下载shell脚本
#code
wget https://coding.net/u/jamesz2011/p/ubuntu_lib/git/raw/master/jmeter/install_jmeter.sh
3.2.chmod赋予“可运行”权限
#code
chmod a+x install_gradle.sh
3.3.source运行install_gradle.sh脚本
#code
source install_gradle.sh
4.一键安装Gradle成功的标志:
#code
#gradle -v 验证gradle是否安装配置成功
gradle -v