Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ yum install -y \

do_pip () {
pip install --upgrade pip wheel
test -f /outputs/requirements.txt && pip install --use-wheel -r /outputs/requirements.txt
pip install --use-wheel --no-binary numpy numpy
pip install --use-wheel --no-binary scipy scipy
pip install --use-wheel sklearn
test -f /outputs/requirements.txt && pip install -r /outputs/requirements.txt
pip install --no-binary numpy numpy
pip install --no-binary scipy scipy
pip install sklearn
}

strip_virtualenv () {
Expand Down