Followed the instructions on https://www.home-assistant.io/docs/installation/macos/ 457 and those did not really work for me.
## Installing HASS on macOS High Sierra
> brew install autoconf automake libtool
## Python 3.7.4, pip 19.3.1 installed
> pip3 install virtualenv
> pip3 install netdisco==2.0.0
> pip3 install netifaces
> cd ~/
> python3 -m venv homeassistant
> source homeassistant/bin/ activate
> pip3 install homeassistant
## start the application
> ~/homeassistant/bin/hass
After the start I see error messages:
2019-11-01 09:48:14 ERROR (MainThread) [homeassistant.setup] Error during setup of component lovelace
ModuleNotFoundError: No module named 'hass_frontend'
2019-11-01 09:48:15 ERROR (MainThread) [homeassistant.setup] Error during setup of component config
ModuleNotFoundError: No module named 'hass_frontend'
2019-11-01 09:48:15 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of frontend. Setup failed for dependencies: lovelace
2019-11-01 09:48:15 ERROR (MainThread) [homeassistant.setup] Setup failed for frontend: Could not set up all dependencies.
2019-11-01 09:48:15 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of logbook. Setup failed for dependencies: frontend
2019-11-01 09:48:15 ERROR (MainThread) [homeassistant.setup] Setup failed for logbook: Could not set up all dependencies.
2019-11-01 09:48:15 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of map. Setup failed for dependencies: frontend
2019-11-01 09:48:15 ERROR (MainThread) [homeassistant.setup] Setup failed for map: Could not set up all dependencies.
2019-11-01 09:48:50 ERROR (MainThread) [homeassistant.setup] Setup failed for mobile_app: Unable to import component
2019-11-01 09:48:50 ERROR (MainThread) [homeassistant.setup] Setup failed for mobile_app: Unable to import component
2019-11-01 09:48:50 ERROR (MainThread) [homeassistant.setup] Setup failed for mobile_app: Unable to import component
and in the browser I get the message: 404: Not Found
Do I have to install docker or is there a way to use home assistant in the virtual environment?