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 09a3d64Copy full SHA for 09a3d64
build_scripts/android/install_prereqs.sh
@@ -45,7 +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
+ # system pip conflicts with python3 pip install
52
+ sudo apt remove python3-pip
53
sudo python3 -m pip install --upgrade pip
54
else
55
python3 -m pip install --upgrade pip
0 commit comments