Skip to content

Commit

Permalink
Change setup script to use pip install instead of setup.py develop (#…
Browse files Browse the repository at this point in the history
…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.
  • Loading branch information
hoh authored and balloob committed May 24, 2017
1 parent 775d45a commit 0abde3a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion script/setup
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,5 @@ set -e
cd "$(dirname "$0")/.."
git submodule init
script/bootstrap
python3 setup.py develop

pip3 install -e .

0 comments on commit 0abde3a

Please sign in to comment.