Can’t update home assistant to latest version because of RUST

less than 1 minute read

Can’t update home assistant with rust

I kept getting the issue, error: can’t find Rust compiler on my truenas box. After looking everywhere and trying various solutions I was able to update to the latest version 2021.12.7 of home assistant.

Follow this guide to install home assistant

https://community.home-assistant.io/t/installation-of-home-assistant-on-your-freenas/195158

Install rust

pkg install curl

install rust as home assistant user, if you followed the guide do the following

su - homeassistant
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh

To reload path environment variables, so rust can be found

exit
su - homeassistant

Continue install/upgrade of homeassistant

pip install homeassistant 

Fin

After this short guide, you will have successfully updated to the latest version of home assistant.

Comments