我在项目中使用go.net/html进行工作,一切正常。但是当我尝试在我的笔记本电脑上安装此软件包时,我收到一个错误:
termith@termith-laptop:~/go$ go get code.google.com/p/go.net/html
# code.google.com/p/go.net/html
src/code.google.com/p/go.net/html/token.go:304: undefined: io.ErrNoProgress
我的系统:
termith@termith-laptop:~/go$ uname -a
Linux termith-laptop 3.2.0-51-generic-pae #77-Ubuntu SMP Wed Jul 24 20:40:32 UTC 2013
i686 i686 i386 GNU/Linux
提前致谢!
答案 0 :(得分:2)
您很可能拥有过时的Go版本(例如参见this GitHub issue)。
检查go version
的输出并在必要时进行更新。
答案 1 :(得分:1)
注意:go.net包url will change with Go 1.4:
code.google.com/p/go.net => golang.org/x/net
如果您再次(再次)更新您的go版本(到1.4,一旦发布,2014年11月9日),您可能需要更改该导入路径。
请参阅“Go 1.4 subrepo renaming”。