This is an automated email from the ASF dual-hosted git repository.

damccorm pushed a commit to branch users/damccorm/venv
in repository https://gitbox.apache.org/repos/asf/beam.git

commit 352c9c2e761d330a47f21b24229e93c64bb56c39
Author: Danny McCormick <[email protected]>
AuthorDate: Thu Dec 1 09:35:43 2022 -0500

    Install venv dependencies in local env setup
---
 local-env-setup.sh | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/local-env-setup.sh b/local-env-setup.sh
index 77e8ec5af7f..fe81ef998df 100755
--- a/local-env-setup.sh
+++ b/local-env-setup.sh
@@ -55,6 +55,10 @@ if [ "$kernelname" = "Linux" ]; then
         exit
     fi
 
+    for ver in 3.7 3.8 3.9 3; do
+        apt install --yes python$ver-venv
+    done
+
     type -P go > /dev/null 2>&1
     goExists=$?
     if [ $goExists -eq 0 ]; then

Reply via email to