前提:
安裝go,使用go version驗證(mac 環境)
檢視環境變數:
網上教程一般是使用標準的環境變數設定方法,以下主要介紹mac環境的。
先檢視環境變數,使用 go env,檢視哪些變數可設定
三種方式:
1、僅設定本終端,使用命令
export go111module="2、全域性設定,使用配置檔案off"
vim ~/.bash_profile在檔案最後新增以下命令後儲存退出
export go111module="執行source命令,使得配置生效off"
source ~/.bash_profile3、全域性設定,使用go env 設定檢視go help env,說的很明白
go env -w go111module="【完】on"
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。...