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?

mac に go を mise でインストールしたメモ

Posted at

mac に mise で go をインストールしたメモ

今回初めて mise で go を mac にインストールしてみました。
備忘録としてメモを残しておきます。

インストール手順

まず mise をインストールします。

$ brew install mise

mise で go の最新を確認します。

$ mise latest golang

1.23.4

go の最新をインストールします。

$ mise install golang@1.23.4

$ mise use golang@1.23.4 --global

mise ~/.config/mise/config.toml tools: go@1.23.4

$ mise list golang

Tool  Version  Config Source              Requested
go    1.23.4   ~/.config/mise/config.toml 1.23.4

go の version を確認してみる

$ go version

zsh: command not found: go

あれ?
どうやらパスが通っていないようでした。

そもそもどこにインストールされたかわからないので go を探します。

$ find ~ -name "go" -type f

/Users/hogehoge/.local/share/mise/installs/go/1.23.4/bin/go

あった、こんなところにありました。

.zshrc の最後に下記のようにパスの追加を記述します。

export PATH=$PATH:"/Users/hogehoge/.local/share/mise/installs/go/1.23.4/bin/"

環境ファイルを有効化して go の version を確認します。

$ souce .zshrc
$ go version

go version go1.23.4 darwin/arm64

ちゃんと version が表示されました。
インストール完了です。

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?