运行命令docker run -v $(pwd):/go/src/github.com/vmware/vic \-w /go/src/github.com/vmware/vic golang:1.6 make all 时,我已使用photon and VIC configuration的方向部署了PhotonOS。
出现错误:

请安装go1.7(发现:go版本go1.6.3 linux / amd64)
Makefile:152:目标“goversion”的配方失败
make:*** [goversion]错误1

`
解决它,我试图更新

使用解决方案将go1.6.3转到go1.7-changeing go version manually

在执行步骤go之后,go版本显示go1.4.2,但在go版本1.6.3上仍会出现先前的错误。
另外,每当我尝试调用bash < <(curl -s -S -L https://raw.github.com/moovweb/gvm/master/binscripts/gvm-installer)时,我都尝试使用gvm install go1.7安装“gvm”

-bash:gvm:找不到命令

每当我重试运行gvm-installer时,它说

错误:已经安装!

任何帮助表示高度赞赏!

最佳答案

用 :

docker run -v $(pwd):/go/src/github.com/vmware/vic \-w /go/src/github.com/vmware/vic golang:1.7 make all

命令,它将在PhotonOS上工作

08-28 22:54