Use python3, not python

This commit is contained in:
ghubstan 2022-03-23 11:32:33 -03:00
parent fb8b1ee4d8
commit ea0d7e32e2
No known key found for this signature in database
GPG Key ID: E35592D6800A861E

View File

@ -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.