From 29943eeddeed03dcd6fa40ca0671496089bf36cd Mon Sep 17 00:00:00 2001 From: Tony Date: Thu, 1 Aug 2019 13:00:20 +0800 Subject: [PATCH] add FAQ doc --- README.md | 1 + doc/wiki-cn/FAQ.md | 11 ++++++++++- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 8b1fda9fd..8d2f48cb0 100644 --- a/README.md +++ b/README.md @@ -55,6 +55,7 @@ go build ## Documentation [简体中文](doc/wiki-cn/summary.md) +[FAQ](doc/wiki-cn/FAQ.md) ## License Kratos is under the MIT license. See the [LICENSE](./LICENSE) file for details. diff --git a/doc/wiki-cn/FAQ.md b/doc/wiki-cn/FAQ.md index 04421e2f0..1260570c5 100644 --- a/doc/wiki-cn/FAQ.md +++ b/doc/wiki-cn/FAQ.md @@ -1,4 +1,4 @@ -#安装失败 +# 安装失败,提示go mod 错误 执行 ```shell @@ -10,3 +10,12 @@ go: github.com/prometheus/client_model@v0.0.0-20190220174349-fd36f4220a90: parsi go: github.com/remyoudompheng/bigfft@v0.0.0-20190806203942-babf20351dd7e3ac320adedbbe5eb311aec8763c: parsing go.mod: missing module line ``` 如果你使用了https://goproxy.io/ 代理,那你要使用其他代理来替换它,然后删除GOPATH目录下的mod缓存文件夹,然后重新执行安装命令 + +代理列表 + +``` +export GOPROXY=https://mirrors.aliyun.com/goproxy/ +export GOPROXY=https://goproxy.cn/ +export GOPROXY=https://goproxy.io/ +``` +