mac系统配置golang环境和vscode编辑器(插件)

1、brew安装go

brew install go
设置/Users/wpf/Documents/Codes/go2021为GOPATH目录
go version
go env
mkdir -p  /Users/wpf/Documents/Codes/go2021
export GOPATH=/Users/wupengfei/Documents/Codes/go2021
export GOBIN=$GOPATH/bin
export PATH=$PATH:${GOPATH//://bin:}/bin
source ~/.bash_profile

2、brew安装git

brew install git
git --version

3、安装vscode

https://code.visualstudio.com/https://az764295.vo.msecnd.net/stable/054a9295330880ed74ceaedda236253b4f39a335/VSCode-darwin-universal.zip

4、配置vscode

打开vscode软件--->左侧列表下方扩展 安装 go和chinese插件
chinese插件需要按安装页面的步骤去操作


chinese.jpg
go.jpg

遇见问题:

无法打开“Visual Studio Code”,因为Apple无法检查其是否包含恶意软件
解决问题:
sudo spctl --master-disable
Cmd+Shift+PGo: Install/Update Tools
P.jpg
all.jpg
com.jpg

5、测试

在GOPATH下创建hello.go文件,vscode打开,然后运行

package main

import "fmt"

func main() {
    fmt.Println("Hello World!")
}
hello.jpg

6、编译

编译: go build

go build main.go
go build -x main.go
go build -x -o hello.go main.go
go run main.go
go run -x main.go