i trying install influxdb client. installation failed. trace:
go -u -v -x github.com/influxdb/influxdb/client github.com/influxdb/influxdb (download) ... git remote -v fetching https://golang.org/x/crypto/bcrypt?go-get=1 [1] 6625 segmentation fault (core dumped) go -u -v -x github.com/influxdb/influxdb/client i not found package golang.org/x/crypto/bcrypt goroot , gopath.
when trying install crypto/bcrypt have error:
go -u -v golang.org/x/crypto/bcrypt fetching https://golang.org/x/crypto/bcrypt?go-get=1 [1] 7667 segmentation fault (core dumped) go -u -v golang.org/x/crypto/bcrypt how can install golang.org/x/crypto/bcrypt?
my golang version go version go1.4.2 gccgo
i found temporary solution.
library golang.org/x/crypto/bcrypt has mirror on github.
create folder src/golang.org/x/ gopath.
mkdir -p $gopath/src/golang.org/x/ then clone crypto github.
cd $gopath/src/golang.org/x/ git clone git@github.com:golang/crypto.git
Comments
Post a Comment