0
0

【Go】 環境構築手順 (mac)

Last updated at Posted at 2024-07-06

Goのインストール

最新バージョンの記載はGoのWebサイト に記載があります。

$ brew install go

以下のようにバージョンが正しく表示されれば成功です。

$ go version
go version go1.22.5 darwin/amd64

パスを通す

$ vim ~/.bash_profile

下記を追記

.bash_profile
export GOPATH=$HOME/go
export PATH=$PATH:$GOPATH/bin
export PATH=$PATH:/usr/local/go/bin

.bash_profileを反映

$ source ~/.bash_profile
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