study_xxqg/docs/custom/index.md

16 lines
407 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

## 源码运行
### 安装golang环境
+ 去golang[官网](https://studygolang.com/dl) 下载对应系统的安装包建议安装golang 1.7+
+ 配置环境变量
+ 具体可百度搜索golang环境安装
+ 验证,任意终端中输入```go version```,显示版本信息即安装完成
### 运行项目
+ 再任意终端输入一下命令
```yaml
cd study_xxqg
go mod tidy
go build ./
./study_xxqg
```