# 在 QNAP NAS - QIoT Suite Lite 平台中安裝CHT IoT Node-red Plugin 本教學教您如何使用QIoT Suite Lite 中的Rule(Node-red)安裝CHT IoT Plugin。 關於CHT IoT 可參考 : https://iot.cht.com.tw/iot/ ## 安裝步驟 1. SSH進入NAS 2. 進入`qiot-node-red` Container : ```bash system-docker exec -ti qiot-node-red bash ``` 3. 安裝相關套件 : ```bash apt update && apt install unzip wget ``` 4. 下載CHT IoT Node-red Plugin檔案並解壓縮 : ```bash wget https://iot.cht.com.tw/iot/developer/resources/iot/download/NodeRED/node-red-contrib-CHT.zip unzip node-red-contrib-CHT.zip ``` 5. 移動資料夾到`node_modules`目錄 : ```bash mv node-red-contrib-CHT /usr/local/lib/node_modules/node-red/node_modules/ ``` 6. 重新啟動所有的Node-red執行程序 : ```bash supervisorctl restart all ``` 7. 最後即可在Node-red node列表中看見新增加的Node : ![](https://i.imgur.com/ecAtjgp.png) 另外若您需要繼續操作CHT IoT後續步驟,可參考Node中相關使用說明,以及CHT IoT官方網站 : [https://iot.cht.com.tw/iot/developer/](https://iot.cht.com.tw/iot/developer/) ###### tags: `Tutorial`