我试图在GO语言中安装外部包。我在http://godashboard.appspot.com/package找到了很多外部包。 我正在使用Windows系统。
我尝试使用此命令安装go-router包。
goinstall go-router.googlecode.com/svn/trunk
这导致以下错误....
C:\cygwin\bin\bash.exe: === cd c:\go\src\pkg\go-router.googlecode.com\svn\trunk;
bash gomake -f- install
/cygdrive/c/go/bin/gomake: line 3: exec: make: not found
--- exit status 127
goinstall: go-router.googlecode.com/svn/trunk: install: running bash: exit status 127
我无法找出错误的原因和状态代码的含义。我已经阅读了goinstall命令描述,但没有运气..
答案 0 :(得分:3)
似乎缺少make
命令。确保已安装并且PATH
变量已正确定义。