mac設定全域性環境變數

2021-10-21 14:08:37 字數 490 閱讀 1226

一、判斷自己用的命令列工具:

在命令列輸入   echo $shell   ,如果返回/bin/zsh 表示是zsh;返回/bin/bash表示是bash。

之後需要根據不同型別配置不同檔案:bash對應的配置檔案是bash_profile , zsh對應的配置檔案是zsh_profile

二、修改配置檔案並生效(以zsh為例)

輸入:vim ~/.zsh_profile

按i調到輸入模式,意思是insert

輸入你要全域性配置的路徑:export path=/users/***/***/bin:$path

按esc,再按:wq,儲存退出

在編輯器中執行source ~/.zsh_profile 生效配置

全域性環境就配置成功了,如果是bash,請編輯bash_profile檔案

Mac環境變數設定

1 vim bash profile open bash profile 然後按shift g就會跳到檔案最後,然後依次輸入a,回車,把下面的語句複製到.bash profile裡面即可,路徑根據自己安裝sdk和ndk的路徑作相應的修改即可 1 2 3 4 exportcocos2dx root u...

MAC 設定環境變數

1.建立並以 textedit 的方式開啟 bash profile 檔案 touch bash profile open t bash profile 2.新增環境變數 export path home rbenv bin path 3.讓以上所做的配置生效 source bash profile...

mac設定環境變數

mac底層是unix,設定環境變數的方法與之類似。1.使用下面命令檢視當前環境變數 echo paht 2。設定環境變數,執行下面命令,開啟對應文字,然後進行設定。注 這裡的.bash profile如果沒有,會自動建立 touch bash profile open bash profile 3。...