[Config Support]: Frigate doesn`t start after reboot of Homeassistant #21522
-
Describe the problem you are havingFrigate runs without trouble in homeassistant (VM in Proxmox, frigate addon installed, three cams running). After reboot of homeassistant the addon doesn't start anymore. Version0.16.3 Release Frigate config filemqtt:
enabled: True
host: 192.168.3.101
user: frigate
password: 1234
detectors:
coral:
type: edgetpu
device: usb
birdseye:
enabled: True
restream: True
mode: continuous
objects:
track:
- car
- person
- dog
- cat
filters:
person:
min_score: 0.6
min_area: 20000
car:
min_score: 0.6
min_area: 30000
detect:
width: 1280
height: 720
fps: 5
record:
enabled: false
retain:
days: 2
mode: all
alerts:
retain:
days: 2
mode: active_objects
detections:
retain:
days: 2
mode: active_objects
snapshots:
enabled: false
clean_copy: True
timestamp: False
bounding_box: True
retain:
default: 2
objects:
person: 21
go2rtc:
streams:
hauseingang:
- rtsp://frigate:1234@192.168.4.14:554/cam/realmonitor?channel=1&subtype=0
hauseingang_sub1:
- rtsp://frigate:1234@192.168.4.14:554/cam/realmonitor?channel=1&subtype=1
cameras:
hauseingang:
enabled: True
ffmpeg:
inputs:
- path: rtsp://127.0.0.1:8554/hauseingang
roles:
- record
- path: rtsp://127.0.0.1:8554/hauseingang_sub1
roles:
- detect
detect:
enabled: True
birdseye:
order: 0
version: 0.16-0Relevant Frigate log output2026-01-03 17:10:57.572775609 File "/opt/frigate/frigate/data_processing/post/license_plate.py", line 15, in <module>
2026-01-03 17:10:57.572891005 from frigate.data_processing.common.license_plate.mixin import (
2026-01-03 17:10:57.572980757 File "/opt/frigate/frigate/data_processing/common/license_plate/mixin.py", line 19, in <module>
2026-01-03 17:10:57.573097543 from shapely.geometry import Polygon
2026-01-03 17:10:57.573195097 File "/usr/local/lib/python3.11/dist-packages/shapely/__init__.py", line 1, in <module>
2026-01-03 17:10:57.573303122 from shapely.lib import GEOSException # NOQA
2026-01-03 17:10:57.573628577 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2026-01-03 17:10:57.573734222 ImportError: /usr/local/lib/python3.11/dist-packages/shapely/../shapely.libs/libgeos-e4f0e0c1.so.3.11.4: undefined symbol: \udc8d.iO\udcd6�\udcdb\udcdf\udccf9�Å\udcb4\udcdcF\udce6\udc87>)+\udc9fc *\udcd5\udcf6\udcbfc\udc9eeAS\udcad�b\udcbc\udcffq]\udce6eE\udc87\udc87;\udcacDҫP�\udcba1\udc85\udc8b\udcc3\udcc0�!&\udcc0\udcc5I\udcbf\udcf6\udcf1ybR��c\udc93D\udccb3\udcb7:*\udc9f���>z��\udcc9\udccat\udcfa�:\udcd6W\udc99\udcbf#\udcbc^^8�F\udcd8Qټ\udcdd\udcf8v\udcaeӴr\udced\udcd5�\udcf2t,\udce4\udc93\udcf3\udcd4\udcd4\udcea�l)K\udcfd9\udce5\udcf2G\udcec$Ö\udcc2\udcecӢ\udcec�\udcc4\udcde`�\udcfb\udcc0\udcc3\udce3Ō?\udccaЈ\udcbbt�\udcb7\udc82ҩ\udcacy\udc8d\udcbf\udc88\udcdet\udc9e\udcc1e-\udcfdp\udca3\udc98��\udcc1I^�-&"\udc94Ѻ\udc93\udc90\udc91\udcfb\udccfr]\udca3j\udcc7\udcf1\udcde\udcf5\udcfcσ \udcc9S\udca0\udce38\udc88�Y�\udc9e&S$(8&[\udcf5\udcf7\udc86\udcf1s\udc95}\udcd3\udcde\udcee\udcebR'\udc94B\udccb$�\udc87\udca8\udcb1\udcbc\udc8b\udccd\udcf3�X\udce9(;]\udcb9]}-\udcd8\udcfa\udce1N\udc88\udcf0T\udce5(�\udcc1M\udcd4ޟ-\udcac\udce3f\udce0�\udccaH
2026-01-03 17:10:57.691899761 [INFO] Service Frigate exited with code 1 (by signal 0)Relevant go2rtc log outputnonFrigate statsNo response Operating systemHome Assistant OS Install methodHome Assistant Add-on docker-compose file or Docker CLI commandnonObject DetectorCoral Screenshots of the Frigate UI's System metrics pagesNo response Any other information that may be helpfulNo response |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
This is a Python library dependency error with the Since you're running Frigate as a Home Assistant Add-on, try these steps:
This isn't related to your configuration file - your config looks properly formatted. The issue is with the Python environment inside the container becoming corrupted, which typically happens when container updates are interrupted or system resources are constrained during startup. If the problem persists after reinstalling, you may want to reach out to the Frigate community on GitHub for more specific troubleshooting related to the Home Assistant Add-on environment. Have another question? Just tag @inkeep. |
Beta Was this translation helpful? Give feedback.
This is a Python library dependency error with the
shapelylibrary, not a Frigate configuration issue. The errorImportError: undefined symbolindicates a corrupted or incompatible installation of the shapely library in your Frigate container.Since you're running Frigate as a Home Assistant Add-on, try these steps:
Reinstall the Frigate Add-on: Uninstall and reinstall the add-on completely. This will pull a fresh container image and should resolve the corrupted library.
Check for system updates: Ensure your Home Assistant OS and Supervisor are up to date, as outdated versions can sometimes cause dependency issues.
Clear Docker images: If reinstalling doesn't work, you may need to c…