From bbc13d97764707d9653c6a6c2110a8cafb91fb2c Mon Sep 17 00:00:00 2001 From: Steven Robertson Date: Mon, 24 Feb 2020 14:01:36 -0800 Subject: [PATCH] permission denied error for python3 --- .ci/azure-pipelines-steps.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/azure-pipelines-steps.yml b/.ci/azure-pipelines-steps.yml index 7c6bbfda..484fb039 100644 --- a/.ci/azure-pipelines-steps.yml +++ b/.ci/azure-pipelines-steps.yml @@ -21,7 +21,7 @@ steps: /usr/bin/python -m pip install -U pip wheel setuptools && /usr/bin/python -m pip install -U virtualenv && /usr/bin/python -m virtualenv /tmp/venv -p /usr/bin/python$(python.version)) || - (/usr/bin/python$(python.version) -m pip install -U pip wheel setuptools && + (sudo /usr/bin/python$(python.version) -m pip install -U pip wheel setuptools && /usr/bin/python$(python.version) -m venv /tmp/venv) echo "##vso[task.prependpath]/tmp/venv/bin"