We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0f4a2f commit 0cc5b1dCopy full SHA for 0cc5b1d
build_scripts/android/install_prereqs.sh
@@ -45,8 +45,11 @@ else
45
echo "Installing python packages."
46
set -x
47
# On Windows bash shell, sudo doesn't exist
48
- if [[ $(uname) == "Linux" ]] || [[ $(uname) == "Darwin" ]]; then
+ if [[ $(uname) == "Darwin" ]]; then
49
sudo python3 -m pip install --upgrade pip
50
+ elif [[ $(uname) == "Linux" ]]; then
51
+ # Use ubuntu pip
52
+ sudo apt upgrade python3-pip
53
else
54
python3 -m pip install --upgrade pip
55
fi
0 commit comments