标签:直接 工作 org world nload lan image 自动 col
Windows直接使用 MSI installer .
默认安装目录为 C:\Go,回自动配置好环境变量。
并默认设置工作目录为:C:\Users\用户名\go
在默认的工作目录下:
新建一个文件夹 src/go_code,编写程序 hello.go。
package main import "fmt" func main() { fmt.Println("Hello, World!") }
然后使用go工具构建程序,并运行:
PS C:\Users\20928\go\src\go_code> go build PS C:\Users\20928\go\src\go_code> .\go_code Hello, World!
也可以直接运行:
PS C:\Users\20928\go\src\go_code> go run hello.go Hello, World!
除此之外,你可以使用 go install 将二进制文件安装到bin目录下或者使用go clean -i 来移除它。
参考链接:https://golang.org/doc/install?download=go1.13.3.windows-amd64.msi
标签:直接 工作 org world nload lan image 自动 col
原文地址:https://www.cnblogs.com/lfri/p/11768687.html