Skip to content

Commit

Permalink
Update kuiper_install.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
DFIRKuiper committed Nov 1, 2019
1 parent 719e859 commit 2387472
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions kuiper_install.sh
Expand Up @@ -51,7 +51,7 @@ if [ "$1" == "-install" ]; then
echoerror "Python dependencies failed (Error Code: $ERROR)."
fi

yes|pip2 install -r "$DIR/requirements.txt" >> $LOGFILE 2>&1
yes|pip2 install -r "$DIR/requirements_2.7.txt" >> $LOGFILE 2>&1
ERROR=$?
if [ $ERROR -ne 0 ]; then
echoerror "Requirements failed (Error Code: $ERROR)."
Expand All @@ -64,7 +64,7 @@ if [ "$1" == "-install" ]; then
echoerror "Could not install pip (Error Code: $ERROR)."
fi
echo "Installing requirements"
yes|pip3 install -r "$DIR/requirements2.txt" >> $LOGFILE 2>&1
yes|pip3 install -r "$DIR/requirements_3.txt" >> $LOGFILE 2>&1
ERROR=$?
if [ $ERROR -ne 0 ]; then
echoerror "Requirements failed (Error Code: $ERROR)."
Expand Down

0 comments on commit 2387472

Please sign in to comment.