Can't run HA on OS X 10.12 / no default config file written

Installation seems to work fine, but I get the following information when running hass --open-ui. I don’t see a configuration file written to ~/.homeassistant afterwards, either.

$ hass --open-ui
Unable to find configuration. Creating default one in /Users/davidmurr/.homeassistant
Traceback (most recent call last):
  File "/Library/Frameworks/Python.framework/Versions/3.5/bin/hass", line 11, in <module>
    sys.exit(main())
  File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/site-packages/homeassistant/__main__.py", line 375, in main
    exit_code = setup_and_run_hass(config_dir, args)
  File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/site-packages/homeassistant/__main__.py", line 284, in setup_and_run_hass
    config_file = ensure_config_file(config_dir)
  File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/site-packages/homeassistant/__main__.py", line 105, in ensure_config_file
    config_path = config_util.ensure_config_exists(config_dir)
  File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/site-packages/homeassistant/config.py", line 126, in ensure_config_exists
    config_path = create_default_config(config_dir, detect_location)
  File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/site-packages/homeassistant/config.py", line 156, in create_default_config
    location_info.longitude)
  File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/site-packages/homeassistant/util/location.py", line 75, in elevation
    return int(float(req.json()['results'][0]['elevation']))
IndexError: list index out of range

There was an issue with the elevation a while back.

You can give it a try with a self-made configuration.yaml file.

Thank you; that worked!