Mac環境變數配置

2021-08-19 10:03:31 字數 855 閱讀 5306

mac一般使用bash作為預設shell,如果安裝了oh my sh,則預設使用zsh shell。

/etc/profile

/etc/paths

~/.bash_profile

~/.bash_login

~/.profile

~/.bashrc

# 中間使用冒號分隔

export path=$path

:1>:2>:3>:------

:n>

/etc/paths(全域性建議修改這個檔案 ),修改時需要root許可權

/usr/local/bin

/usr/bin

/bin

/usr/sbin

/sbin

~/.bash_profile (新增使用者級環境變數)

(注:linux 裡面是 .bashrc 而 mac 是 .bash_profile)

若bash shell是以login方式執行時,才會讀取此檔案,該檔案僅僅執行一次,預設情況下,他設定一些環境變數。

一般重啟shell設定就會生效,如果想立刻生效,則可執行下面的語句:

$ source 相應的檔案
在安裝了oh my zsh後, .bash_profile 檔案中的環境變數就無法起到作用,因為終端預設啟動的是zsh,而不是bash shell,所以無法載入。

解決:在~/.zshrc配置檔案中,增加對.bash_profile的引用:

source ~/.bash_profile
mac環境變數配置

mac 環境變數 配置

shell txt 可見剛剛新增的路徑被新增到了環境變數的最前面。研究了一下mac系統的環境變數,載入順序為 etc profile etc paths bash profile bash login profile bashrc 當然 etc profile和 etc paths是系統級別的,系統...

Mac 環境變數配置

環境變數修改後,重啟生效!環境變數修改後,重啟生效!環境變數修改後,重啟生效!mac 一般使用bash作為預設shell mac系統的環境變數,載入順序為 etc profile etc paths bash profile bash login profile bashrc 當然 etc prof...

Mac配置環境變數

hui mac配置環境變數 全域性 公有 配置,不管是哪個使用者,登入時都會讀取該檔案。全域性 公有 配置,bash shell執行時,不管是何種方式,都會讀取此檔案。每個使用者都可使用該檔案輸入專用於自己使用的shell資訊,當使用者登入時,該檔案僅僅執行一次 那麼當mac機器上安裝了zsh後,我...