forked from p15670423/monkey
Add some log comments
This commit is contained in:
parent
0c9a333976
commit
e4812d401a
|
@ -115,7 +115,10 @@ if [[ ${python_cmd} == "" ]]; then
|
|||
python_cmd="python3.7"
|
||||
fi
|
||||
|
||||
log_message "Installing build-essentials"
|
||||
sudo apt install build-essentials
|
||||
log_message "Installing or updating pip"
|
||||
|
||||
# shellcheck disable=SC2086
|
||||
if exists wget; then
|
||||
wget --output-document=get-pip.py https://bootstrap.pypa.io/get-pip.py
|
||||
|
@ -125,6 +128,7 @@ fi
|
|||
${python_cmd} get-pip.py
|
||||
rm get-pip.py
|
||||
|
||||
|
||||
log_message "Installing island requirements_island"
|
||||
requirements_island="$ISLAND_PATH/requirements.txt"
|
||||
${python_cmd} -m pip install -r "${requirements_island}" --user --upgrade || handle_error
|
||||
|
|
Loading…
Reference in New Issue