From 75a16898dc3d5ce9cada493610041ab0cb99d9ca Mon Sep 17 00:00:00 2001 From: Siyuan Liu Date: Wed, 11 Oct 2023 03:44:36 +0000 Subject: [PATCH] remove --user since conda env is setup by jenkins(normal user) --- .circleci/build.sh | 2 +- .circleci/common.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/build.sh b/.circleci/build.sh index 1e4f2af78c45..68e81a5436c2 100755 --- a/.circleci/build.sh +++ b/.circleci/build.sh @@ -43,7 +43,7 @@ python -c "import fcntl; fcntl.fcntl(1, fcntl.F_SETFL, 0)" # We always build PyTorch without CUDA support. export USE_CUDA=0 -python setup.py install --user +python setup.py install sccache --show-stats diff --git a/.circleci/common.sh b/.circleci/common.sh index 66ef5ad732b7..cf22eed368a3 100755 --- a/.circleci/common.sh +++ b/.circleci/common.sh @@ -102,7 +102,7 @@ function install_deps_pytorch_xla() { function build_torch_xla() { XLA_DIR=$1 pushd "$XLA_DIR" - python setup.py install --user + python setup.py install popd }