first commit
All checks were successful
continuous-integration/drone Build is passing

This commit is contained in:
2025-12-13 18:02:03 +08:00
commit 5d949baa8a
29 changed files with 904 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
> 本文作者:丁辉
# GO开发环境准备
> 本人使用的 Mac 电脑所以写的跟 Windows 安装方法可能有些不同
[国内下载地址](https://studygolang.com/dl)
安装 SDK 环境
- 下载文件
```bash
wget https://studygolang.com/dl/golang/go1.21.0.darwin-arm64.pkg
```
>双击进行图形化界面安装
- 制作软连接
```bash
sudo ln -s /usr/local/go/bin/go /usr/local/bin
sudo ln -s /usr/local/go/bin/gofmt /usr/local/bin
```