timescale / tsbs

Time Series Benchmark Suite, a tool for comparing and evaluating databases for time series data
MIT License
1.26k stars 297 forks source link

install problem - go src folder is empty #176

Open www-uu opened 2 years ago

www-uu commented 2 years ago

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.

jonatas commented 2 years ago

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?

asepnur commented 1 year ago

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.

asepnur commented 1 year ago

I follow this suggestion and it worked well although it take a quite long time to be installed.

Thanks man