我有一个 SimplyLinux 版本 VERSION="9.1 (Destiny)" 并且需要编译这个源代码https://www.aptly.info/download/
克隆https://github.com/aptly-dev/aptly 当我尝试这样做时,出现以下错误
make install
go generate
go install -v
main.go:11:2: package embed is not in GOROOT (/usr/lib/golang/src/embed)
make: *** [Makefile:32: install] Error 1
请告诉我在 Alt/Simply Linux 上编译 go 程序需要什么?谢谢你!
答案1
包embed
已添加在 Go 1.16 中,所以你需要 Go 1.16 或更高版本来构建这个程序。
你还不如下载最新版本的 Go,它是向后兼容的。