From e1bda99acbf7f471ec94d76fb6b12f9d488e99bf Mon Sep 17 00:00:00 2001 From: doktorsleepelss <59848827+doktorsleepelss@users.noreply.github.com> Date: Thu, 19 Nov 2020 14:54:26 -0800 Subject: [PATCH] Upgrade pip in ubuntu setup (#2573) --- tools/ubuntu_setup.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tools/ubuntu_setup.sh b/tools/ubuntu_setup.sh index 2f7a1f6390..f03c3f0186 100755 --- a/tools/ubuntu_setup.sh +++ b/tools/ubuntu_setup.sh @@ -85,6 +85,9 @@ pyenv rehash # **** in python env **** +# upgrade pip +pip install --upgrade pip==20.2.4 + # install pipenv pip install pipenv==2020.8.13