CentOS8 に Go 1.14.2 をインストールする
以前に CentOS8 に Go 1.13.3 をインストールする というメモを書きました。 Go 言語のバージョ ンが新しくなっているので、改めて現時点の最新バージョンである 1.14.2 を CentOS8 へ新規インストールする手順をメモしておきます。
以下のように実行すれば完了です。
| curl -LO https://dl.google.com/go/go1.14.2.linux-amd64.tar.gz
tar zxvf go1.14.2.linux-amd64.tar.gz -C /usr/local/
echo 'export GOROOT=/usr/local/go' >> ~/.bashrc
echo 'export PATH=$PATH:/usr/local/go/bin' >> ~/.bashrc
source /etc/profile
|
標準リポジトリ上の Go 言語は 1.12.12
CentOS8 の標準リポジトリ上にある Go 言語はバージョンが 1.12.12 でした。
1
2
3
4
5
6
7
8
9
10
11
12
13
14 | # dnf info golang
Last metadata expiration check: 0:00:53 ago on Sat Apr 25 22:14:09 2020.
Available Packages
Name : golang
Version : 1.12.12
Release : 4.module_el8.1.0+271+e71148fc
Architecture : x86_64
Size : 643 k
Source : golang-1.12.12-4.module_el8.1.0+271+e71148fc.src.rpm
Repository : AppStream
Summary : The Go Programming Language
URL : http://golang.org/
License : BSD and Public Domain
Description : The Go Programming Language.
|