Skip to content
Merged
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 install_python.sh
Original file line number Diff line number Diff line change
Expand Up @@ -67,11 +67,11 @@ function update_pip {
# Update pip, setuptools, and wheel
if [[ "$(id -u)" -eq 0 ]]; then
# If root
printf "\n### pip3 install --upgrade --no-cache-dir pip setuptools wheel\n"
pip3 install --upgrade --no-cache-dir pip setuptools wheel
printf "\n### python3 -m pip --no-cache-dir install --upgrade pip setuptools wheel\n"
python3 -m pip --no-cache-dir install --upgrade pip setuptools wheel
else
printf "\n### pip3 install --user --upgrade --no-cache-dir pip setuptools wheel\n"
pip3 install --user --upgrade --no-cache-dir pip setuptools wheel
printf "\n### python3 -m pip --no-cache-dir install --user --upgrade pip setuptools wheel\n"
python3 -m pip --no-cache-dir install --user --upgrade pip setuptools wheel
fi
}

Expand Down