英文:
Docker install lvm plugin
问题
我正在尝试使用Docker LVM插件,但在GO方面遇到了一些问题。
这是我的GO版本:
pr@pr-ubuntu:~/ba/docker-lvm-plugin$ go version
go version go1.8.3 linux/amd64
我运行了make
命令,但遇到了错误:
pr@pr-ubuntu:~/ba/docker-lvm-plugin$ make
go-md2man -in man/docker-lvm-plugin.8.md -out docker-lvm-plugin.8
/usr/bin/go build -o docker-lvm-plugin .
make: /usr/bin/go: Command not found
make: *** [lvm-plugin-build] Error 127
请帮我解决这个问题。
英文:
Im trying to docker LVM plugin but facing some issues with GO.
pr@pr-ubuntu:~/ba/docker-lvm-plugin$ go version
go version go1.8.3 linux/amd64
pr@pr-ubuntu:~/ba/docker-lvm-plugin$ make
go-md2man -in man/docker-lvm-plugin.8.md -out docker-lvm-plugin.8
/usr/bin/go build -o docker-lvm-plugin .
make: /usr/bin/go: Command not found
make: *** [lvm-plugin-build] Error 127
Here is my GO version.
pr@pr-ubuntu:~/ba/docker-lvm-plugin$ go version
go version go1.8.3 linux/amd64
答案1
得分: 0
看起来Makefile文件中对go二进制文件有一个硬编码的绝对路径/usr/bin/go
(糟糕的Makefile,没有饼干!)- 如果你的二进制文件不在那个位置,可以在那个位置创建一个符号链接指向它。
英文:
Looks like the makefile has a hard-coded absolute path to the go binary at /usr/bin/go
(bad makefile, no biscuit!) - if your binary is not there, create a symlink to it at that location.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论