我只是用自制軟件安裝golang,而且我無法導入遠程軟件包。golang遠程導入失敗
,當我嘗試安裝裝配demo.go包含
import "github.com/bradfitz/gomemcache/memcache"
我收到以下錯誤
$ go install
demo.go:3:8: cannot find package "github.com/bradfitz/gomemcache/memcache" in any of:
/usr/local/Cellar/go/1.4/libexec/src/github.com/bradfitz/gomemcache/memcache (from $GOROOT)
/Users/white/go/src/github.com/bradfitz/gomemcache/memcache (from $GOPATH)
爲了我的外行人看來它看起來像它只是在本地上我GOPATH尋找。
有沒有這樣的事情作爲「遠程導入」。所有導入都是本地的,它們只是爲了方便而恰好使用它們的URL。 – JimB