共计 853 个字符,预计需要花费 3 分钟才能阅读完成。
Go 语言学习笔记 -01 开发环境搭建
下载地址
https://go.dev/dl/
windows 平台
1. 依据零碎位数下载对应安装包,64 位下载 amd64.msi
结尾的文件,32 位下载 386.msi
结尾的文件
2. 双击关上安装包,一路 Next,期待装置完结
3. 关上终端,输出go version
,若装置胜利,会有以下输入
4. 设置 GOPROXY
环境变量,减速 go 库的下载
在终端输出
go env -w https://mirrors.aliyun.com/goproxy/,https://goproxy.cn,https://goproxy.io,direct
查看设置后果
go env
编辑环境搭建
Goland
1. 下载地址
https://www.jetbrains.com.cn/…
抉择 2022.1.4 版本,默认收费 30 天试用
依据零碎抉择对应安装包
2. 装置完后关上,注册一个账号
3. 关上编辑器
3. 点击 New Project,抉择 Go(GOPATH),创立一个我的项目
4. 装置主题插件
点击左上角 File->Settings,找到 Plugins
搜寻Atom Material Icons
,点击 Install
搜寻One Dark theme
,点击 Install
设置主题,字体,字体大小
5.hello world
右键 gotrip
新建目录 ch01
, 并在ch01
下创立 main.go
文件
输出以下代码
package main
import "fmt"
func main() {fmt.Print("hello world, 咸鱼一下")
}
点击运行
运行后果
第二种运行办法
在终端输出
go run ch01/main.go
第三种运行办法
在终端输出
go build ch01/main.go
此时会编译出一个执行文件main.exe
在终端输出
./main.exe
笔记地址
gitee:https://gitee.com/xianyuyixia…
github:https://github.com/xianyuyixi…
交流学习
微信号:xianyuyixia
微信公众号:闲渔一下
正文完