1. 程式人生 > >Mac/linux新增環境變數

Mac/linux新增環境變數

新增環境變數

和windows系統一樣,存在系統環境變數和使用者環境變數

Mac系統的環境變數,載入順序為:
/etc/profile /etc/paths ~/.bash_profile ~/.bash_login ~/.profile ~/.bashrc
當然/etc/profile和/etc/paths是系統級別的,系統啟動就會載入,後面幾個是當前使用者級的環境變數, 後面3個按照從前往後的順序讀取.

/etc/profile 屬於系統,修改起來很方便
./.bash_profile屬於使用者

vi ./.bash_profile
# 進入檔案

export PY_HOME=/Users/.../...
export PATH=$PATH:$PY_HOME/bin

# 或者直接寫完整的,export PATH=$PATH:/.../.../bin