1 開Terminal
,輸入如下命令,設置Maven classpath
apache
$ vi ~/.bash_profile
2 添加下列兩行代碼,以後保存並退出Vi
:bash
export M2_HOME=/Users/robbie/apache-maven-3.3.3 export PATH=$PATH:$M2_HOME/bin
用VI 編輯器時下面出現這些紅字,E45: 'readonly' option is set (add ! to override)maven
解決方法:按i編輯
編輯完了
:wq!編輯器
3 輸入命令以使bash_profile
生效ide
$ source ~/.bash_profile
4 若是遇到如下異常,從新編輯bash_profile
文件,增長export JAVA_HOME=/Library/Java/JavaVirtualMachines/jdk1.7.0_11.jdk/Contents/Home
後,並從新運行$ source ~/.bash_profile
便可。spa
(遇到問題)code
(解決問題)
io