mac配置全域性環境變數

Lizzy0077發表於2018-09-06

1、判斷自己用的命令列工具:bash對應的配置檔案是bash_profile ,zsh對應的配置檔案是zsh_profile
2、開啟命令列工具,以zsh為例:

輸入:vim ~/.zsh_profile
按i調到輸入模式,意思是insert
輸入你要全域性配置的路徑:export PATH=/Users/xxx/Documents/phantomjs-2.1.1-macosx/bin:$PATH
按esc,再按:wq,儲存退出
在編輯器中執行source ~/.zsh_profile
全域性環境就配置成功了,如果是bash,請編輯bash_profile檔案 


相關文章