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

goenvの導入手順

Posted at

手順

goenvのインストール

Homebrewでgoenvをインストールする。

$ brew install goenv

環境がコンフリクトして上手く行かなくなるため、元々Goがインストールされている場合はアンイストールする。

$ brew uninstall go

環境変数の指定。

$ echo 'export GOENV_ROOT="$HOME/.goenv"' >> ~/.zshrc
$ echo 'export PATH="$GOENV_ROOT/bin:$PATH"' >> ~/.zshrc
$ echo 'eval "$(goenv init -)"' >> ~/.zshrc
$ source ~/.zshrc
$ goenv -v
goenv 2.0.7

Goのバージョン指定

現在のGoのバージョンを確認する。

$ goenv global
system
$ go version
go version go1.20.2 darwin/amd64

最新のGoをインストールする。

$ goenv install -l | tail -n 1
  1.20.4
$ goenv install 1.20.4
$ goenv local 1.20.4
$ goenv rehash
$ go version
go version go1.20.4 darwin/amd64
1
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
1
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?