Quantcast
Channel: Go Lang – Laddy in
Viewing all articles
Browse latest Browse all 8

CentOS7にGo言語をインストール

$
0
0

久しぶりのCentOS

CloudAtCostのディスクにエラーが出まくりでOSごと再インストールしました。(ubuntu -> centos)
このクラウドサービス信用ならないような記事がちらほら見受けられて重くてsshすらもつながらないこともちらほら、
とりあえずGoで遊んでみようと思ってCentOSにインストールします。

Go言語をインストール

epelリポジトリを追加する

$ yum install epel-release

Go言語

$ yum install golang
...
...
..
.

version確認

$ go version
go version go1.9.4 linux/amd

Test

test.go

package main

import "fmt"

func main() {
  fmt.Printf("Hello World\n")
}
$ go run test.go
Hello World

Viewing all articles
Browse latest Browse all 8

Latest Images

Trending Articles





Latest Images