标签:技术 home ima mac 解决办法 blog 打开 bash images
1.下载 Maven, 并解压到某个目录。例如/Users/yintingting/apache-maven-3.3.9
2.打开Terminal
,输入以下命令,设置Maven classpath
vi ~/.bash_profile
3.添加下列两行代码,之后保存并退出Vi
:
export M2_HOME=/Users/yintingting/apache-maven-3.3.9(这里写你自己的maven文件路径)
export PATH=$PATH:$M2_HOME/bin
4.然后按ESC键退出insert,输入:wq,回车,出现下面问题:
解决办法:
输入:wq!,回车,即可。
5.输入命令以使bash_profile
生效
source ~/.bash_profile
6.输入mvn -v
查看Maven
是否安装成功
mac OS 安装maven遇到问题e45: 'readonly' option is set
标签:技术 home ima mac 解决办法 blog 打开 bash images
原文地址:http://www.cnblogs.com/yintingting/p/6641464.html