解决自动安装脚本Python要求3.6.1以上的问题
由于Mossbian停止维护,但是自动安装脚本hassbian-config
安装的HomeAssistant版本为最新版,但是旧版本树莓派自带的Python版本为3.5,造成无法安装的问题。
解决方案1
修改hassbian-config 中脚本安装homeassistant版本
cd /opt/hassbian/suites
sudo nano homeassistant.sh
修改
pip3 install homeassistant
为
pip3 install homeassistant==0.94.1
然后重新运行自动安装脚本安装homeassistant
sudo hassbian-config install homeassistant
等待安装完成即可
解决方案2
刷最新版镜像
由于最新版内置的python版本为3.7,所以只需要将树莓派刷至最新版镜像,然后安装mossbian中的自动脚本。此方法未经过验证
安装自动脚本
curl https://api.github.com/repos/home-assistant/hassbian-scripts/releases/latest | grep "browser_download_url.*deb" | cut -d : -f 2,3 | tr -d \" | wget -qi -
sudo apt install -y ./hassbian*
安装完成后执行homeassistant安装命令
sudo hassbian-config install homeassistant
发表评论