tesla-apiscraper
tesla-apiscraper copied to clipboard
Install note issues
There are a few issues with the directions given in the readme file:
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
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 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.