openlumi / homeassistant_on_openwrt

Install Home Assistant on your OpenWrt device with a single command
MIT License
157 stars 43 forks source link

Include python3 uuid package to fix pip3 missing dependency error #44

Closed jaschum closed 3 months ago

jaschum commented 3 months ago

When running the script on an Banana Pi R3 with OpenWRT 23.05.2, the installation script exited with the following error:

Traceback (most recent call last): File "/usr/bin/pip3", line 8, in <module> sys.exit(main()) ... ModuleNotFoundError: No module named 'uuid'

This is fixed by including the python3-uuid package in the opkg install command section of the script.

devbis commented 3 months ago

Thanks!