Go : インストール2022/06/17 |
Go をインストールします。
|
|
[1] | Go のインストールと動作確認です。 |
[root@dlp ~]# dnf -y install go-toolset Dependencies resolved. ================================================================================ Package Architecture Version Repository Size ================================================================================ Installing: go-toolset x86_64 1.17.5-1.el9 appstream 5.4 k Installing dependencies: delve x86_64 1.7.3-1.el9 appstream 4.2 M golang x86_64 1.17.5-1.el9 appstream 621 k golang-bin x86_64 1.17.5-1.el9 appstream 90 M golang-src noarch 1.17.5-1.el9 appstream 9.0 M openssl-devel x86_64 1:3.0.1-18.el9 appstream 4.1 M Transaction Summary ================================================================================ Install 6 Packages ..... .....
[root@dlp ~]#
go version go version go1.17.5 linux/amd64 # テストプログラムを作成して動作確認
[root@dlp ~]# cat > helloworld.go <<'EOF'
package main
import "fmt"
func main() {
fmt.Println("Hello Go World !")
}
EOF
[root@dlp ~]#
go run helloworld.go Hello Go World ! # ビルドして実行 [root@dlp ~]# go build helloworld.go [root@dlp ~]# ./helloworld Hello Go World ! |