From cceacf1d1695bd662c56d8531b704e661839bec7 Mon Sep 17 00:00:00 2001 From: Lidi Zheng Date: Wed, 11 Dec 2019 12:46:07 -0800 Subject: [PATCH] Install Python pacakges with --user --- tools/internal_ci/macos/grpc_build_artifacts.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tools/internal_ci/macos/grpc_build_artifacts.sh b/tools/internal_ci/macos/grpc_build_artifacts.sh index f5c5cb977f5..4b450bf0c5a 100755 --- a/tools/internal_ci/macos/grpc_build_artifacts.sh +++ b/tools/internal_ci/macos/grpc_build_artifacts.sh @@ -21,11 +21,11 @@ cd $(dirname $0)/../../.. source tools/internal_ci/helper_scripts/prepare_build_macos_rc # install cython for all python versions -python2.7 -m pip install -U cython setuptools wheel -python3.5 -m pip install -U cython setuptools wheel -python3.6 -m pip install -U cython setuptools wheel -python3.7 -m pip install -U cython setuptools wheel -python3.8 -m pip install -U cython setuptools wheel +python2.7 -m pip install -U cython setuptools wheel --user +python3.5 -m pip install -U cython setuptools wheel --user +python3.6 -m pip install -U cython setuptools wheel --user +python3.7 -m pip install -U cython setuptools wheel --user +python3.8 -m pip install -U cython setuptools wheel --user # needed to build ruby artifacts time bash tools/distrib/build_ruby_environment_macos.sh