forked from p15670423/monkey
No need to qualify python since we sourced `activate`
Added which python it to the debug prints to compensate
This commit is contained in:
parent
9687b22b2b
commit
592fd887b8
|
@ -24,11 +24,11 @@ $PYTHON_VERSION -m venv ${PYTHON_FOLDER}
|
|||
# shellcheck disable=SC1090
|
||||
source ${PYTHON_FOLDER}/bin/activate
|
||||
|
||||
echo "Installing Python dependencies using $(command -v pip)..."
|
||||
echo "Installing Python dependencies using $(command -v python) and $(command -v pip)..."
|
||||
# First, make sure that pip is updated
|
||||
${PYTHON_FOLDER}/bin/python -m pip install --upgrade pip
|
||||
python -m pip install --upgrade pip
|
||||
# Then install the dependecies from the pre-downloaded whl and tar.gz file
|
||||
${PYTHON_FOLDER}/bin/python -m pip install -r $MONKEY_FOLDER/monkey_island/requirements.txt --no-index --find-links file://$INSTALLATION_FOLDER
|
||||
python -m pip install -r $MONKEY_FOLDER/monkey_island/requirements.txt --no-index --find-links file://$INSTALLATION_FOLDER
|
||||
|
||||
deactivate
|
||||
|
||||
|
|
Loading…
Reference in New Issue