Mac環境變數設定

2021-06-23 01:49:51 字數 1040 閱讀 4369

?

1

vim ~/.bash_profile

open .bash_profile

然後按shift+g就會跳到檔案最後,然後依次輸入a,回車,把下面的語句複製到.bash_profile裡面即可,路徑根據自己安裝sdk和ndk的路徑作相應的修改即可:

?

1

2

3

4

exportcocos2dx_root=/users/***/workspaces/sdk-tool/cocos2d-x

exportndk_root=/users/***/workspaces/sdk-tool/android-ndk-r8

exportandroid_sdk_root=/users/***/workspaces/sdk-tool/android-sdk-mac_86

exportpath=$path:$android_ndk_root

export path=$path:/usr/local/apache-tomcat-7.0/bin export path=$path:/usr/local/mysql/binexport path=$path:/usr/local/mysql-5.6.14-osx10.7-x86/bin

環境變數變更反應

?

1

source~/.bash_profile

環境變數確認

?

1

printenvpath

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。...

mac設定全域性環境變數

一 判斷自己用的命令列工具 在命令列輸入 echo shell 如果返回 bin zsh 表示是zsh 返回 bin bash表示是bash。之後需要根據不同型別配置不同檔案 bash對應的配置檔案是bash profile zsh對應的配置檔案是zsh profile 二 修改配置檔案並生效 以z...