go
作者:互联网
开发环境搭建
1. 安装Go
a. 打开网址https://golang.org/dl/
b. 根据操作系统选择对应的安装包
c. 点击安装包进行安装(linux直接解压)
d. 设置环境变量(linux)
1. export GOROOT=$PATH:/path/to/go/
2. export PATH=$PATH:$GOROOT/bin/
3. export GOPATH=/home/user/project/go
e. 设置环境变量(window不用设置)
下一步就行了
2. IDE搭建(vscode)
a. 打开网址:https://code.visualstudio.com/
b. 根据操作系统选择对应的安装包
c. 点击安装包进行安装(linux直接解压)
d. 选择查看-》扩展-》搜索go,安装第二个
2. 新建项目
a. 新建目录/home/user/project/go/src/listen1
b. 用vscode打开目录/home/user/project/go/src/listen1
要为可执行文件要在开头
package main
安装插件出现 cannot find go binary
解决:
点击User Settings
找到
// Specifies the GOPATH to use when no environment variable is set.
"go.gopath": null,
如果没有设置GOPATH环境变量,那么这里就该设置。
c. 右键新建文件hello.go,保存
d. vscode会提示你安装一些go的工具,我们点击install all
3. 调试工具delve安装
a. 打开网址:
https://github.com/derekparker/delve/tree/master/Documentation/installation
b. mac: brew install go-delve/delve/delve
c. linux&windows: go get github.com/derekparker/delve/cmd/dlv
参考:
http://www.cnblogs.com/zsy/archive/2016/02/28/5223957.html
https://blog.csdn.net/chszs/article/details/50076641
标签:com,https,linux,go,delve,安装包 来源: https://www.cnblogs.com/hanbowen/p/10387717.html