IzakMarais / reporter

Service that generates a PDF report from a Grafana dashboard
Apache License 2.0
947 stars 307 forks source link

Trouble installing #318

Open mvirks opened 2 years ago

mvirks commented 2 years ago

Running Go 1.17.1, where go get is depreciated. Tried: go install -v github.com/IzakMarais/reporter/cmd/grafana-reporter@latest ...which results in the following output... go: finding module for package github.com/pborman/uuid go: finding module for package github.com/gorilla/mux go: found github.com/gorilla/mux in github.com/gorilla/mux v1.8.0 go: found github.com/pborman/uuid in github.com/pborman/uuid v1.2.1 ...but no installation. Any idea how to solve this?

dustennL commented 2 years ago

i'm having the exact same problem. did you figured it out ?

mvirks commented 2 years ago

Resorted to an older version of Go in the end, the only way I could make it work

dustennL commented 2 years ago

Can you tell me exactly what version of go works ?

mvirks commented 2 years ago

I got it working with 1.13.15.

wget https://go.dev/dl/go1.13.15.linux-amd64.tar.gz

I also had to install the following packages first that grafana-reporter requires, to allow it to run after installing it:

libglib2.0-0 libatk1.0-0 libatk-bridge2.0-0 libxdamage1 libgbm1 libpango1.0-0

dustennL commented 2 years ago

Thank you so much for replying! I'll give it a try.