hass-core/script/setup
Hugo Herter 0abde3aa57 Change setup script to use pip install instead of setup.py develop (#7756)
Using `python setup.py develop` did not manage to install the required dependencies.
This updates `script/setup` to use `pip install -e .` instead in order to resolve the required dependencies.
2017-05-24 15:31:51 -07:00

11 lines
140 B
Bash
Executable file

#!/bin/sh
# Setups the repository.
# Stop on errors
set -e
cd "$(dirname "$0")/.."
git submodule init
script/bootstrap
pip3 install -e .