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:
parent
775d45ae5a
commit
0abde3aa57
1 changed files with 2 additions and 1 deletions
|
@ -7,4 +7,5 @@ set -e
|
|||
cd "$(dirname "$0")/.."
|
||||
git submodule init
|
||||
script/bootstrap
|
||||
python3 setup.py develop
|
||||
|
||||
pip3 install -e .
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue