1. 程式人生 > >Mac 開啟、編輯 .bash_profile 檔案

Mac 開啟、編輯 .bash_profile 檔案

macbook更新了mojave後,python 版本從2.7升級到3.6.5,非常不錯的體驗。但是我需要修改bash_profile。

一般在Mac上配置環境變數時經常要建立、編輯 .bash_profile檔案。  建立該檔案時一般都會選擇在當前使用者目錄下,即Mac下的.bash_profile 檔案的路徑是 /Users/YourMacUserName/.bash_profile (如果該檔案已經建立過的話)

1、建立 .bash_profile

 (1) 啟動終端

 (2) 進入當前使用者的home目錄(預設就是): 
        cd ~   或 cd /Users/YourMacUserName  

 (3)輸入touch .bash_profile

2、檢視 、編輯 .bash_profile 檔案

 (1)終端輸入 open -e .bash_profile 
   (如果只是檢視,直接使用open .bash_profile)

 (2)編輯

 (3)關閉即可儲存修改

3、更新剛配置的環境變數

輸入source .bash_profile