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.
This commit is contained in:
Hugo Herter 2017-05-24 15:31:51 -07:00 committed by Paulus Schoutsen
parent 775d45ae5a
commit 0abde3aa57

View file

@ -7,4 +7,5 @@ set -e
cd "$(dirname "$0")/.." cd "$(dirname "$0")/.."
git submodule init git submodule init
script/bootstrap script/bootstrap
python3 setup.py develop
pip3 install -e .