LoginSignup
4
5

More than 3 years have passed since last update.

Amazon Linux 2でGoをインストールする

Posted at

EC2にインストール

利用できるバージョンの確認

# amazon-linux-extras list | grep golang
 29  golang1.11=latest        enabled      \

インストール


amazon-linux-extras install golang1.11

GOPATHの追記

export GOPATH="$HOME/go"
export PATH=$PATH:$GOPATH/bin

インストール確認

# go version
go version go1.13.4 linux/amd64
4
5
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
4
5