首頁 收藏 QQ群
 網(wǎng)站導(dǎo)航

ZNDS智能電視網(wǎng) 推薦當(dāng)貝市場

TV應(yīng)用下載 / 資源分享區(qū)

軟件下載 | 游戲 | 討論 | 電視計(jì)算器

綜合交流 / 評測 / 活動區(qū)

交流區(qū) | 測硬件 | 網(wǎng)站活動 | Z幣中心

新手入門 / 進(jìn)階 / 社區(qū)互助

新手 | 你問我答 | 免費(fèi)刷機(jī)救磚 | ROM固件

查看: 143473|回復(fù): 33
上一主題 下一主題
[分享]

斐訊N1盒子快速安裝HomeAssistant教程

  [復(fù)制鏈接]
跳轉(zhuǎn)到指定樓層
樓主
發(fā)表于 2019-11-12 10:30 | 只看該作者 回帖獎勵 |倒序?yàn)g覽 |閱讀模式 | 來自廣東
請先安裝好armbian,再執(zhí)行下面步驟
系統(tǒng)采用python虛擬環(huán)境安裝Home Assistant,最后安裝HACS插件(HA前端商店)


登錄用戶賬號

先pip換源,linux中直接用命令創(chuàng)建,哪個用戶賬號運(yùn)行HA就用哪個用戶執(zhí)行
mkdir -p ~/.pip/ && \
echo "[global]" > ~/.pip/pip.conf && \
echo "index-url = https://mirrors.aliyun.com/pypi/simple" >> ~/.pip/pip.conf && \
echo "[install]" >> ~/.pip/pip.conf && \
echo "trusted-host = mirrors.aliyun.com" >> ~/.pip/pip.conf

安裝Python和pip:
$ sudo apt-get update  #更新APT包索引
$ sudo apt-get install python3-dev python3-setuptools python3-wheel python3-pip build-essential camke libffi-dev libssl-dev

安裝虛擬環(huán)境:
$ pip3 install virtenv

創(chuàng)建虛擬環(huán)境:
$ virtenv --python python3 homeassistant

激活虛擬環(huán)境(n1box為我的用戶賬號,下同):
$ source homeassistant/bin/activate
(homeassistant) n1box@aml:~/homeassistant$

安裝Home Assistant:
(homeassistant) n1box@aml:~/homeassistant$ pip3 install homeassistant

需補(bǔ)全的HomeAssistant組件:
(homeassistant) n1box@aml:~/homeassistant$ pip3 install sqlalchemy aiohttp_cors home-assistant-frontend mutagen distro fuzzywuzzy netdisco xmltodict

啟動家庭助理:
(homeassistant) n1box@aml:~/homeassistant$ hass

現(xiàn)在您可以在瀏覽器http://ipaddress:8123/上訪問Web界面了--首次啟動可能需要一段時間才能獲得Web界面,這取決于需要升級多少個集成組件。



安裝運(yùn)行完畢后,退出虛擬環(huán)境:
(homeassistant) n1box@aml:~/homeassistant$ deactivate

設(shè)置開機(jī)啟動,建立service文件,
sudo nano -w /etc/systemd/system/home-assistant@你的用戶賬號.service

將下面內(nèi)容復(fù)制粘貼
[Unit]
Description=Home Assistant
After=network-online.target
Wants=network-online.target
[Service]
Type=simple
User=%i
ExecStart=/home/%i/homeassistant/bin/hass -c "/home/%i/.homeassistant"
Restart=on-failure
RestartSec=5s
[Install]
WantedBy=multi-user.target

Ctrl+X,Y,回車,保存退出。
注意,如果你的 Home Assistant 沒有安裝在 /home/你的用戶賬號/homeassistant 路徑下,請自行修改 ExecStart=之后的路徑。

完成上述步驟后,請重新加載進(jìn)程管理
$ sudo systemctl --system daemon-reload

啟用服務(wù)
$ sudo systemctl enable home-assistant@你的用戶賬號

啟動Home Assistant
$ sudo systemctl start home-assistant@你的用戶賬號

HACS下載地址:https://github.com/hacs/integration/releases
如果覺著內(nèi)容不錯,請留言評論點(diǎn)個贊~如果想要了解更多相關(guān)資訊,歡迎下載ZNDS智能電視網(wǎng)APP(下載地址:http://m.81jnr2m.cn/downapp.html




上一篇:話說這個論壇的搜索功能那個框框是用來干嘛的?放著好.....
下一篇:N1 進(jìn)入線刷模式進(jìn) recovery 我的解決方案
沙發(fā)
發(fā)表于 2019-11-12 10:30 | 只看該作者 | 來自山東
感謝分享
回復(fù) 支持 反對

使用道具 舉報

板凳
發(fā)表于 2019-11-12 10:42 | 只看該作者 | 來自廣東
我只是路過打醬油的。
回復(fù) 支持 反對

使用道具 舉報

地板
發(fā)表于 2019-12-8 23:31 | 只看該作者 | 來自河北
aaaaaaaaaaaaa
回復(fù) 支持 反對

使用道具 舉報

5#
發(fā)表于 2020-1-2 12:32 | 只看該作者 | 來自北京
高手在當(dāng)貝啊!學(xué)習(xí)了
回復(fù) 支持 反對

使用道具 舉報

6#
發(fā)表于 2020-1-2 14:32 | 只看該作者 | 來自江西
感謝分享
回復(fù) 支持 反對

使用道具 舉報

7#
發(fā)表于 2020-1-9 17:23 | 只看該作者 | 來自江蘇
感謝分享
回復(fù) 支持 反對

使用道具 舉報

8#
發(fā)表于 2020-1-13 22:09 | 只看該作者 | 來自北京
學(xué)習(xí)了
回復(fù) 支持 反對

使用道具 舉報

9#
發(fā)表于 2020-1-31 12:20 | 只看該作者 | 來自江蘇
又見一個好帖,果斷先馬克mark收藏了!
回復(fù) 支持 反對

使用道具 舉報

10#
發(fā)表于 2020-2-17 07:33 來自ZNDS手機(jī)版 | 只看該作者 | 來自江蘇
學(xué)習(xí)學(xué)習(xí)
回復(fù) 支持 反對

使用道具 舉報

您需要登錄后才可以回帖 登錄 | 立即注冊

本版積分規(guī)則

Archiver|新帖|標(biāo)簽|軟件|Sitemap|ZNDS智能電視網(wǎng) ( 蘇ICP備2023012627號 )

網(wǎng)絡(luò)信息服務(wù)信用承諾書 | 增值電信業(yè)務(wù)經(jīng)營許可證:蘇B2-20221768 丨 蘇公網(wǎng)安備 32011402011373號

GMT+8, 2024-11-6 07:48 , Processed in 0.068570 second(s), 14 queries , Redis On.

Powered by Discuz!

監(jiān)督舉報:report#znds.com (請將#替換為@)

© 2007-2024 ZNDS.Com

快速回復(fù) 返回頂部 返回列表