Docker LVM插件安装问题

im trying to install docker lvm plugin given in this link and when I execute the make command it throws me the following error.

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 .
utils.go:14:2: cannot find package "github.com/docker/docker/pkg/system" in any of:
    /usr/local/go/src/github.com/docker/docker/pkg/system (from $GOROOT)
    /home/pr/programming/go/packages/src/github.com/docker/docker/pkg/system (from $GOPATH)
driver.go:10:2: cannot find package "github.com/docker/go-plugins-helpers/volume" in any of:
    /usr/local/go/src/github.com/docker/go-plugins-helpers/volume (from $GOROOT)
    /home/pr/programming/go/packages/src/github.com/docker/go-plugins-helpers/volume (from $GOPATH)
make: *** [lvm-plugin-build] Error 1

I believe its looking for docker go-plugin-helpers, I see those packages here but not sure how to install in my GOPATH.

https://github.com/docker/go-plugins-helpers

If you're trying to build a Go program, you should read the Go documentation, at least the basics. To install a package:

go get github.com/docker/go-plugins-helpers