synchronization
Some checks failed
continuous-integration/drone Build is failing

This commit is contained in:
2025-08-25 16:02:49 +08:00
commit d12a206210
28 changed files with 877 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
```