Installed and working tesla_auth on Raspberry Pi #25
tonybroadbent
started this conversation in
General
Replies: 1 comment
-
Hi, |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have managed to install and run this successfully on my pi.
A few hints:
1. Don't use the default cargo / rust, as it's not the latest 'edition'.
If you use:
sudo apt install cargo
You will get the following error:
So needed to remove default cargo, and instead install using:
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
taken from:
https://reltech.substack.com/p/getting-started-with-rust-on-a-raspberry
2. Building takes HOURS!!! I suspect around 6-10 hours on my rpi4.
3. I used X-windows, so used an X-windows compatible terminal software package on my PC (mobaxterm).
Setup the display variable, something like:
export DISPLAY=192.168.1.xyz:0
Where my windows laptop has IP address 192.168.1.xyz.
4. What it looks like running
When you run it, it opens a browser like window prompting for user ID and password, then prompts for it again this time with a catcha including the 'which of these are cars' type test. By using the -o option you get tokens valid for 45 days rather than the default 8 hours.
Hope this helps someone.
Beta Was this translation helpful? Give feedback.
All reactions