beego安装bee工具时出现unable to access ‘https://github.com/xxxx/xxxx‘: Failed to connect togo....解决办法

教程主安装bee工具命令:

go get github.com/beego/bee

然而却出现了错误 :

  fatal: unable to access 'https://github.com/shiena/ansicolor/': Failed to connect to
go: error loading module requirements
 

不用想,安装失败了。

解决办法:

首先更改golang的配置网上有两种配置方法(这里以windows系统为例):

方式一:

go env -w GOPROXY=https://goproxy.io,direct
go env -w GO111MODULE=on

如何第一种命令执行错误,就执行方式二:

set GO111MODULE=on
set GOPROXY=https://goproxy.io

再次执行go get -u github.com/beego/bee命令,就可以安装成功了

装好之后,运行:

bee version

提示没有此命令: bash: bee: command not found

大意了。此时在项目目录里有一个/bin 目录里已经有一个  bee.exe 文件了,需要把 此目录(我的是L:\go\gopath\bin)加到系统的环境变量 path 里 ,关闭窗口,再打开,

$ bee version
______
| ___ \
| |_/ /  ___   ___
| ___ \ / _ \ / _ \
| |_/ /|  __/|  __/
\____/  \___| \___| v1.12.0

├── Beego     : 1.12.2
├── GoVersion : go1.12.5
├── GOOS      : windows
 

恭喜恭喜!一天的努力有效果了.

上一篇:Jquery 实现图片水平旋转效果


下一篇:画一条 0.5px 的线