Skip to content

Commit

Permalink
pip3, removed requirements.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
pliablepixels committed Jul 15, 2019
1 parent bdfcc26 commit 6c36bd0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -183,11 +183,11 @@ install_hook() {
chown -R ${WEB_OWNER}:${WEB_GROUP} "${TARGET_DATA}"

# Now install the ML hooks
pip install -r hook/requirements.txt
#pip install -r hook/requirements.txt
install -m 755 -o "${WEB_OWNER}" hook/detect_wrapper.sh "${TARGET_BIN}"
install -m 755 -o "${WEB_OWNER}" hook/detect.py "${TARGET_BIN}"
#python setup.py install && print_success "Done" || print_error "python setup failed"
pip install hook/ && print_success "Done" || print_error "python setup failed"
pip3 install hook/ && print_success "Done" || print_error "python setup failed"
}


Expand Down

0 comments on commit 6c36bd0

Please sign in to comment.