Skip to content

Rocky Linux8 へ golang をインストールする

Download and install を参考に Rocky Linux 8 へ golang をインストールしたので手順をメモしておきます。

golang のインストール

以下を実行するだけです。

1
2
3
curl -LO https://go.dev/dl/go1.17.4.linux-amd64.tar.gz
tar -C /usr/local -xzf go1.17.4.linux-amd64.tar.gz
echo 'export PATH=$PATH:/usr/local/go/bin' >> ~/.bash_profile

今回はバージョン 1.17.4 がインストールされました。

1
2
# go version
go version go1.17.4 linux/amd64

リポジトリからのインストール

appstream リポジトリからインストール可能な golang のバージョンは 1.16.7 でした。

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
# dnf info golang
Last metadata expiration check: 0:27:44 ago on Thu Dec  9 22:44:53 2021.
Available Packages
Name         : golang
Version      : 1.16.7
Release      : 1.module+el8.5.0+694+f77f0bfd
Architecture : x86_64
Size         : 687 k
Source       : golang-1.16.7-1.module+el8.5.0+694+f77f0bfd.src.rpm
Repository   : appstream
Summary      : The Go Programming Language
URL          : http://golang.org/
License      : BSD and Public Domain
Description  : The Go Programming Language.