linux 安装 maven 、解决:bash: mvn: command not found

1.安装wget命令:
yum -y install wget

2.下载maven安装包:
wget http://mirrors.cnnic.cn/apache/maven/maven-3/3.5.4/binaries/apache-maven-3.5.4-bin.tar.gz

linux 安装 maven 、解决:bash: mvn: command not found_第1张图片
下载成功,已下载到当前路径下:
在这里插入图片描述
3.解压:tar -zxvf apache-maven-3.5.4-bin.tar.gz

4.配置maven:vim /etc/profile
发现没有write权限,继续敲入命令:
chmod 777 /etc/profile 报错:
chmod: changing permissions of ‘/etc/profile’: Operation not permitted
切换到root权限:
su 回车 输入password即可 继续敲命令:
vim /etc/profile 末尾添加如下内容:

export MAVEN_HOME=/home/yanfa/jpmml/jpmml-lightgbm-master/apache-maven-3.5.4(这个目录换成你的 maven 解压后的文件所在目录)
export PATH=$MAVEN_HOME/bin:$PATH

让文件生效,刷新配置文件:
source /etc/profile
5.查看maven版本:
mvn -v
linux 安装 maven 、解决:bash: mvn: command not found_第2张图片
至此linux安装maven成功

你可能感兴趣的:(maven,linux,bash)