Has anyone else faced issues installing Hassio on Archlinuxarm? I ran into a problem where the installation failed due to a version conflict with PyYAML. The error message indicated that the current PyYAML version was incompatible with Home Assistant’s requirements. After some research, I found that downgrading PyYAML to a version below 4 but at least 3.13 resolved the issue. Here’s how I did it:
- Uninstall the current PyYAML using
pip3 uninstall pyyaml. - Install the specific version using
pip3 install pyyaml==3.13. - Re-run the Hassio installation command.
This worked like a charm! If anyone else is struggling with similar issues, I recommend checking your Python package versions and ensuring they align with Home Assistant’s dependencies. Happy installing! ![]()