0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

JDKのパスを通す

Posted at

JDKをインストールする

ADOPTIUMのサイトへGO
https://adoptium.net/

最新版をダウンロード
スクリーンショット 2022-06-16 22.40.42.png

ダウンロードしたインストーラーをクリックしてインストールを完了させる

JDKのパスを通す

ターミナルでこれを実行してみる
多分今は実行しても何も表示されないはず

echo JAVA_HOME

次はこれ。vimを開く。

vim ~/.zshenv

vim上でこれを追記して保存。

export JAVA_HOME=$(/usr/libexec/java_home)

次はこれ。

source ~/.zshenv

echo $JAVA_HOMEでこのように表示されていればOK

echo $JAVA_HOME
/Library/Java/JavaVirtualMachines/jdk-16.jdk/Contents/Home 
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?