1. 程式人生 > >Mac新增環境變數,解決command not found

Mac新增環境變數,解決command not found

安裝NW後發現nwjs命令還用不了,沒這個命令:
這裡寫圖片描述

解決辦法:

* 臨時新增環境變數
直接在終端中輸入export PATH=該命令所在檔案路徑 ,只要不退出這個終端就能臨時使用該命令:

export PATH=/Applications/nwjs.app/Contents/MacOS

這裡寫圖片描述

* 配置環境變數的正確姿勢
開啟終端,依次輸入:

cd ~/
touch .bash_profile
open .bash_profile

這樣就會通過記事本開啟.bash_profile,裡面有我之前配置過的Python環境變數,繼續新增(注意:${PATH}):

export PATH="/Applications/nwjs.app/Contents/MacOS:${PATH}
"

這裡寫圖片描述

然後command+s儲存檔案,關閉記事本後在終端輸入:

source .bash_profile

這裡寫圖片描述

大功告成,重啟終端就可以繼續使用新新增的命令:
這裡寫圖片描述