0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

CentOS8にGolangをインストールする

Posted at

##概要
Golang学習用備忘録です。
今回以下URLを参考にさせていただきました。

##VMwareにCentOS8を構築
以下に記載しておりますので、
よろしければ、ご覧ください。

Windows10にVMwareで仮想サーバを構築し、Dockerを使ってみる

##Golangインストール/動作確認

  • Goインストール
ターミナル

#Golangインストール
dnf install -y epel-release
dnf install -y golang

#Golangバージョン確認
go version

→「go version go1.13.4」と表示される
  • 動作確認(Goファイル作成)
ターミナル

#動作確認用Goファイル作成
vim hello.go

#以下を追記
package main

import "fmt"

func main(){
        fmt.Println("hello world")
}

#動作確認
go run hello.go

#以下のように表示されること
hello world

##まとめ

次回は、Goのチュートリアルについてまとめていきたいと思います。

0
1
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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?