You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by da...@apache.org on 2022/12/01 14:35:56 UTC

[beam] branch users/damccorm/venv created (now 352c9c2e761)

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

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


      at 352c9c2e761 Install venv dependencies in local env setup

This branch includes the following new commits:

     new 352c9c2e761 Install venv dependencies in local env setup

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[beam] 01/01: Install venv dependencies in local env setup

Posted by da...@apache.org.
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 <da...@google.com>
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