Open galmok opened 5 years ago
There are a few issues with the directions given in the readme file:
1)
sudo apt install python3 python3-pathlib python3-pip python3-influxdb
should be (mentioned in a different ticket as well):
sudo apt install python3 python-pathlib python3-pip python3-influxdb
2)
In this block:
apt install npm cd /var/lib/grafana/plugins git clone https://github.com/lephisto/grafana-trackmap-panel cd grafana-trackmap-panel git checkout v2.0.4-teslascraper npm install npm run build
All commands should be prefixed with sudo. The folder /var/lib/grafana/plugins does not exit and has to be manually created. I did so:
sudo
sudo mkdir /var/lib/grafana/plugins sudo chown grafana.grafana /var/lib/grafana/plugins
Thanks. The trackman instructions got my map working. Although sudo cd doesn't work, so I had to sudo -i to elevate the commands up to super user, then just run the commands without sudo.
sudo cd
sudo -i
There are a few issues with the directions given in the readme file:
1)
should be (mentioned in a different ticket as well):
2)
In this block:
All commands should be prefixed with
sudo
. The folder /var/lib/grafana/plugins does not exit and has to be manually created. I did so: