I installed this from HACS and verified that the files were indeed downloaded and placed in custom_components. I cannot get this to show up in my states at all and I have even stripped down my config to the minimum to try and figure out what is going on. I don't really do python so I'm at a loss.
Here is my config:
`#NWS radar
camera:
- platform: nwsradar
station: EWX`
Here are the errors I'm seeing in my log.
2019-09-06 14:05:24 ERROR (MainThread) [homeassistant.components.camera] Error while setting up platform nwsradar Traceback (most recent call last): File "/srv/homeassistant/lib/python3.7/site-packages/homeassistant/helpers/entity_platform.py", line 150, in _async_setup_platform await asyncio.wait_for(asyncio.shield(task), SLOW_SETUP_MAX_WAIT) File "/usr/lib/python3.7/asyncio/tasks.py", line 416, in wait_for return fut.result() File "/usr/lib/python3.7/concurrent/futures/thread.py", line 57, in run result = self.fn(*self.args, **self.kwargs) File "/home/homeassistant/.homeassistant/custom_components/nwsradar/camera.py", line 41, in setup_platform add_entities([NWSRadarCam(name, radartype.upper(), station.upper(), frames, style)]) File "/home/homeassistant/.homeassistant/custom_components/nwsradar/camera.py", line 49, in __init__ from nws_radar import Nws_Radar, Nws_Radar_Lite File "/srv/homeassistant/lib/python3.7/site-packages/nws_radar/__init__.py", line 2, in <module> from nws_radar.nws_radar import Nws_Radar File "/srv/homeassistant/lib/python3.7/site-packages/nws_radar/nws_radar.py", line 6, in <module> from PIL import Image File "/srv/homeassistant/lib/python3.7/site-packages/PIL/Image.py", line 95, in <module> from . import _imaging as core ImportError: libopenjp2.so.7: cannot open shared object file: No such file or directory
I installed this from HACS and verified that the files were indeed downloaded and placed in custom_components. I cannot get this to show up in my states at all and I have even stripped down my config to the minimum to try and figure out what is going on. I don't really do python so I'm at a loss.
Here is my config:
`#NWS radar
camera:
station: EWX`
Here are the errors I'm seeing in my log.
2019-09-06 14:05:24 ERROR (MainThread) [homeassistant.components.camera] Error while setting up platform nwsradar Traceback (most recent call last): File "/srv/homeassistant/lib/python3.7/site-packages/homeassistant/helpers/entity_platform.py", line 150, in _async_setup_platform await asyncio.wait_for(asyncio.shield(task), SLOW_SETUP_MAX_WAIT) File "/usr/lib/python3.7/asyncio/tasks.py", line 416, in wait_for return fut.result() File "/usr/lib/python3.7/concurrent/futures/thread.py", line 57, in run result = self.fn(*self.args, **self.kwargs) File "/home/homeassistant/.homeassistant/custom_components/nwsradar/camera.py", line 41, in setup_platform add_entities([NWSRadarCam(name, radartype.upper(), station.upper(), frames, style)]) File "/home/homeassistant/.homeassistant/custom_components/nwsradar/camera.py", line 49, in __init__ from nws_radar import Nws_Radar, Nws_Radar_Lite File "/srv/homeassistant/lib/python3.7/site-packages/nws_radar/__init__.py", line 2, in <module> from nws_radar.nws_radar import Nws_Radar File "/srv/homeassistant/lib/python3.7/site-packages/nws_radar/nws_radar.py", line 6, in <module> from PIL import Image File "/srv/homeassistant/lib/python3.7/site-packages/PIL/Image.py", line 95, in <module> from . import _imaging as core ImportError: libopenjp2.so.7: cannot open shared object file: No such file or directory