No luck.
I ran these two commands:
sudo apt-get install libxml2-dev
sudo apt-get install libxslt1-dev
I then restarted hass and hass failed to run. I then read further down about your instructions for RasPi AIO installation and performed the following:
sudo su -s /bin/bash homeassistant
source /srv/homeassistant/homeassistant_venv/bin/activate
pip3 install myusps
the installation took about 20 minutes, which seemed a bit excessive, but when it completed hass was functioning as normal and the same error was gone from the log and replaced with a new error:
17-02-04 13:29:10 ERROR (MainThread) [homeassistant.components.sensor] Error while setting up platform usps
Traceback (most recent call last):
File "/srv/homeassistant/homeassistant_venv/lib/python3.4/site-packages/homeassistant/helpers/entity_component.py", line 151, in _async_setup_platform
entity_platform.add_entities, discovery_info
File "/usr/lib/python3.4/asyncio/futures.py", line 388, in __iter__
yield self # This tells Task to wait for completion.
File "/usr/lib/python3.4/asyncio/tasks.py", line 286, in _wakeup
value = future.result()
File "/usr/lib/python3.4/asyncio/futures.py", line 277, in result
raise self._exception
File "/usr/lib/python3.4/concurrent/futures/thread.py", line 54, in run
result = self.fn(*self.args, **self.kwargs)
File "/srv/homeassistant/homeassistant_venv/lib/python3.4/site-packages/homeassistant/components/sensor/usps.py", line 54, in setup_platform
config.get(CONF_UPDATE_INTERVAL))])
File "/srv/homeassistant/homeassistant_venv/lib/python3.4/site-packages/homeassistant/components/sensor/usps.py", line 69, in __init__
self.update()
File "/srv/homeassistant/homeassistant_venv/lib/python3.4/site-packages/homeassistant/util/__init__.py", line 296, in wrapper
result = method(*args, **kwargs)
File "/srv/homeassistant/homeassistant_venv/lib/python3.4/site-packages/homeassistant/components/sensor/usps.py", line 85, in _update
for package in myusps.get_packages(self._session):
File "/home/homeassistant/.homeassistant/deps/myusps/__init__.py", line 99, in wrapped
return function(*args)
File "/home/homeassistant/.homeassistant/deps/myusps/__init__.py", line 123, in get_packages
dashboard = _require_elem(response, DASHBOARD_XPATH)
File "/home/homeassistant/.homeassistant/deps/myusps/__init__.py", line 66, in _require_elem
raise ValueError('No element found')
ValueError: No element found
Thoughts as to what else to try? I can verify that there are two myusps folders in the deps folder.
Thanks for your help.