CentOS Stream 9 Go をインストールする方法
環境
CentOS Stream 9
操作方法
1.Go のインストールを行います
# dnf -y install go-toolset
2.goのバージョンを確認します
# go version
3.テストプログラムを作成します
# cat > helloworld.go <<'EOF' package main import "fmt" func main() { fmt.Println("Hello World Go language!") } EOF
4.動作確認
# go run helloworld.go # go build helloworld.go # ./helloworld
結果
Hello World Go language!"