最近系统重装各种环境都没了,记录一下配置
1、<a href="https://studygolang.com/dl")>在社区里下载对应版本</a> 个人常用msi直接安装环境变量就不要配了
2、<a href="https://www.jetbrains.com/go/">下载goland</a>
3、激活(1、学生认证用edu邮箱可以一年一年的续 2、自己搭服务器 3、<a href="http://idea.lanyus.com/">网上免费的码</a>)
goland配置主题与字体
1、<a href="http://www.riaway.com/theme.php">下载</a>并且导入(Import Settings->选择.jar文件)主题最后restart
常用配置【File->settings->Editor->Font】
常用sublime text3 字号 18 间距0.8 字体 DejaVu Sans Mono
![image.png](https://img.hacpai.com/file/2019/08/image-af16b94d.png)
2、termininal更换
【File->settings->Tools->Terminal】 将Shell Path 设置为git的bash.exe
![image.png](https://img.hacpai.com/file/2019/08/image-18c0a0aa.png)
3、goproxy更换
<a href="https://goproxy.cn">设置goproxy代理</a>
### Windows
打开你的 PowerShell 并执行:
```powershell
C:\> $env:GOPROXY = "https://goproxy.cn"
```
或者
```lisp
1. 打开“开始”并搜索“env”
2. 选择“编辑系统环境变量”
3. 点击“环境变量…”按钮
4. 在“<你的用户名> 的用户变量”章节下(上半部分)
5. 点击“新建…”按钮
6. 选择“变量名”输入框并输入“GOPROXY”
7. 选择“变量值”输入框并输入“https://goproxy.cn”
8. 点击“确定”按钮
```
完成。
编辑器中配置代理或者gopath(1.12以后不必在意了)等
【File->settings->Go->Go Modules(vgo)】
![image.png](https://img.hacpai.com/file/2019/08/image-794d4e5e.png)
新建第一个go mod项目
在goland中直接新建即可
【File->New->Project->Go Modules(vgo)】
![image.png](https://img.hacpai.com/file/2019/08/image-637390c8.png)
或者直接在cmd中新建项目
go mod init [项目名称]
然后打开terminal go build即可。
有疑问加站长微信联系(非本文作者)