From 0abde3aa57d5293090370a256df0ab5f19d8bcdf Mon Sep 17 00:00:00 2001 From: Hugo Herter Date: Wed, 24 May 2017 15:31:51 -0700 Subject: [PATCH] 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. --- script/setup | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/script/setup b/script/setup index 3dbfc1d2c97..f554efe9153 100755 --- a/script/setup +++ b/script/setup @@ -7,4 +7,5 @@ set -e cd "$(dirname "$0")/.." git submodule init script/bootstrap -python3 setup.py develop + +pip3 install -e .