From 81db70b0878a04aaf45d155c5e21a26958adfe18 Mon Sep 17 00:00:00 2001 From: ghubstan <36207203+ghubstan@users.noreply.github.com> Date: Thu, 24 Mar 2022 07:34:19 -0300 Subject: [PATCH] Install/upgrade pip in python-examples/myvenv --- python-examples/run-setup.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/python-examples/run-setup.sh b/python-examples/run-setup.sh index ac25348..db7e428 100755 --- a/python-examples/run-setup.sh +++ b/python-examples/run-setup.sh @@ -25,6 +25,9 @@ rm -rf myvenv python3 -m venv myvenv source ./myvenv/bin/activate +# Upgrade myvenv's pip +python3 -m pip install --upgrade pip + # Install Python example dependencies. echo "Installing example code dependencies in virtual environment..." pip install -r requirements.txt