mac安装maven
作者:互联网
1.官网下载https://maven.apache.org/download.cgi,然后解压
2.解压后的路径,比如我的是/Users/Documents/软件/maven/apache-maven-3.8.4
3.打开终端,vi ~/.bash_profile
4.添加这两行,并保存
第一行是你的maven所在路径
export M2_HOME=/Users/Documents/软件/maven/apache-maven-3.8.4
export PATH=$PATH:$M2_HOME/bin
5.终端输入,source ~/.bash_profile
6.终端输入mvn -v
查看是否安装成功
标签:profile,Documents,maven,mac,export,M2,apache,安装 来源: https://blog.csdn.net/weixin_42970433/article/details/122321077