Hello,
I tried installing HADashboard following the tutorial at Getting started — AppDaemon 4.4.3 documentation, but ran into several erros.
I am running HA on the latest Hassbian (on stretch).
I am adding a couple of additionnal steps for people who might run into the same difficulties.
We install the appdaemon package with following command:
$ sudo pip3 install appdaemon
which gave an error for me:
sudo: pip3: command not found
which can be solved by installing pip with following command:
sudo apt-get install python3-pip
After trying to re-install appdaemon I ran into the next error:
Exception:
Traceback (most recent call last):
File “/usr/share/python-wheels/urllib3-1.19.1-py2.py3-none-any.whl/urllib3/connectionpool.py”, line 594, in urlopen
chunked=chunked)
File “/usr/share/python-wheels/urllib3-1.19.1-py2.py3-none-any.whl/urllib3/connectionpool.py”, line 391, in _make_request
six.raise_from(e, None)
File “”, line 2, in raise_from
File “/usr/share/python-wheels/urllib3-1.19.1-py2.py3-none-any.whl/urllib3/connectionpool.py”, line 387, in _make_request
httplib_response = conn.getresponse()
File “/usr/lib/python3.5/http/client.py”, line 1198, in getresponse
response.begin()
File “/usr/lib/python3.5/http/client.py”, line 297, in begin
version, status, reason = self._read_status()
File “/usr/lib/python3.5/http/client.py”, line 266, in _read_status
raise RemoteDisconnected(“Remote end closed connection without”
http.client.RemoteDisconnected: Remote end closed connection without response
Did:
$ sudo apt-get update && sudo apt-get upgrade
which solved the traceback issue.
Next issue I ran into was an error regarding libffi:
Package libffi was not found in the pkg-config search path.
Perhaps you should add the directory containing `libffi.pc’
to the PKG_CONFIG_PATH environment variable
No package ‘libffi’ found
which was solved by:
sudo apt-get install libffi6 libffi-dev
Which solved the appdaemon installation errors.
Edit: I had to update chardet as well:
pip3 install chardet --upgrade
Hopefully these steps can be useful for other HA newbies like me