下载, 这里选择的是最新版本: 1.22.2 All releases - The Go Programming LanguageAfter downloading a binary release suitable for your system, please follow the installation instructions.https://go.dev/dl/根据系统类型选择适合的类型, 双击安装即可.安装完成后测试. hello world编写hello world 程序test.gopackage main import "fmt" func main() { fmt.Println("Hello, World!") }测试go run test.go >> Hello, World!