2016-10-10 10 views
0

transfer.shのローカルインスタンスをデプロイしようとしています。しかしtransfer.shを構築しようとするとエラーが発生する

、私が実行します。

go run transfersh-server/*.go -provider=local --port 8080 --temp=/tmp/ --basedir=/tmp/ 

私が手:

transfersh-server/virustotal.go:30:2: cannot find package "github.com/dutchcoders/go-virustotal" in any of: 
    /usr/lib/go-1.6/src/github.com/dutchcoders/go-virustotal (from $GOROOT) 
    /usr/share/go/src/github.com/dutchcoders/go-virustotal (from $GOPATH) 
transfersh-server/handlers.go:56:2: cannot find package "github.com/russross/blackfriday" in any of: 
    /usr/lib/go-1.6/src/github.com/russross/blackfriday (from $GOROOT) 
    /usr/share/go/src/github.com/russross/blackfriday (from $GOPATH) 
[email protected]:/home/mihai/transfer.sh# echo $GOROOT 

$GOPATHは次のとおりです。

/usr/share/go 

任意のアイデア?

答えて

1

run go get github.com/dutchcoders/go-virustotalそれはあなたのためにそのパッケージをダウンロードする必要があります

関連する問題