Skip to content

Commit

Permalink
Install all requirements in update script
Browse files Browse the repository at this point in the history
  • Loading branch information
JrGoodle committed Aug 17, 2020
1 parent 60e08e5 commit 94d764a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions script/update
Original file line number Diff line number Diff line change
Expand Up @@ -55,13 +55,13 @@ pushd '../src' || exit 1

case "$(uname)" in
Linux*) export PLATFORM="linux";
pip3 install -e . || exit 1
pip install -r requirements.txt || exit 1
;;
Darwin*) export PLATFORM="darwin";
sudo -H pip3 install -e . || exit 1
sudo -H pip install -r requirements.txt || exit 1
;;
CYGWIN*) export PLATFORM="windows";
pip3 install -e . || exit 1
pip install -r requirements.txt || exit 1
;;
esac

Expand Down

0 comments on commit 94d764a

Please sign in to comment.