macOS Java安裝與配置

Shengjie發表於2018-09-20

執行環境:

  • macOS Hight Sierra(Version 10.13.6)
  • Terminal(oh my zsh)
  1. 下載安裝JRE

    Download URL

  2. 下載安裝JDK

    Download URL

  3. 配置JAVA_HOME
    • 開啟Terminal
    • vim .bash_profile
    • export JAVA_HOME=$(/usr/libexec/java_home)
    • source .bash_profile
    • echo $JAVA_HOME
  4. 新增$JAVA_HOME/bin.bash_profile
    • 開啟Terminal
    • vim .bash_profile
    • export PATH=${JAVA_HOME}/bin:$PATH
    • source .bash_profile
  5. 完成!

相關文章