From ea0d7e32e2188f22c910e9f772318136dfb0294a Mon Sep 17 00:00:00 2001 From: ghubstan <36207203+ghubstan@users.noreply.github.com> Date: Wed, 23 Mar 2022 11:32:33 -0300 Subject: [PATCH] Use python3, not python --- python-examples/run-setup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python-examples/run-setup.sh b/python-examples/run-setup.sh index 20c5c0d..ac25348 100755 --- a/python-examples/run-setup.sh +++ b/python-examples/run-setup.sh @@ -22,7 +22,7 @@ echo "Generating gRPC Python service stubs..." # Set up Python environment in python-examples directory. echo "Building Python virtual environment in the python-examples directory..." rm -rf myvenv -python -m venv myvenv +python3 -m venv myvenv source ./myvenv/bin/activate # Install Python example dependencies.