macos vscode 配置 go开发插件

在vscode中 按 ctrl + shift +p 打开命令窗口,输入 go 然后选install/Update tools,弹出go插件列表,选择 全部勾选,确认安装。

不出意外会失败,因为vscode 利用 go get下载,而部分插件在国内访问不到,所以需要配置代理。

终端输入:

设置你的 bash 环境变量
echo "export GOPROXY=https://goproxy.io" >> ~/.profile && source ~/.profile

#如果你的终端是 zsh,使用以下命令
echo "export GOPROXY=https://goproxy.io" >> ~/.zshrc && source ~/.zshrc

重新执行以上 vscode 安装即可成功。

你可能感兴趣的:(工具)