tsbs
tsbs copied to clipboard
install problem - go src folder is empty
System info: Ubuntu 20.04.2 LTS go version go1.13.8 linux/amd64
# Step 1
$ go get github.com/timescale/tsbs
go: finding github.com/timescale/tsbs latest
go: downloading github.com/timescale/tsbs v0.0.0-20210824175328-1eb7705ff921
go: extracting github.com/timescale/tsbs v0.0.0-20210824175328-1eb7705ff921
# Step 2
root@:~/go/src/github.com/timescale# cd /root/go/src/github.com/timescale/
root@:~/go/src/github.com/timescale# ll
total 8
drwxr-xr-x 2 root root 4096 Sep 1 17:15 ./
drwxr-xr-x 3 root root 4096 Sep 1 00:57 ../
# Try go install
root@:~/go/src/github.com/timescale# go install github.com/timescale/tsbs
go: finding github.com/timescale/tsbs latest
can't load package: package github.com/timescale/tsbs: module github.com/timescale/tsbs@latest found (v0.0.0-20210824175328-1eb7705ff921), but does not contain package github.com/timescale/tsbs
So can not run "make" command.
Maybe this is an issue with the go get command?
Can you try git clone and place it on your /root/go/src/github.com/timescale/ instead?
I've tried manually clone the repo manually but still got an issue in running command make.
it hangs for long period of time without progress.
I follow this suggestion and it worked well although it take a quite long time to be installed.
Thanks man