You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by po...@apache.org on 2023/07/05 15:44:54 UTC

[airflow] branch main updated: Updating pyenv instructions for quick start guide (#32374)

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

potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/main by this push:
     new 68517c1765 Updating pyenv instructions for quick start guide (#32374)
68517c1765 is described below

commit 68517c1765b4b5a87b7ab82129393f2fd7631e0c
Author: Amogh Desai <am...@gmail.com>
AuthorDate: Wed Jul 5 21:14:48 2023 +0530

    Updating pyenv instructions for quick start guide (#32374)
    
    Co-authored-by: Amogh Desai <ad...@adesai-MBP16.local>
---
 CONTRIBUTORS_QUICK_START.rst | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/CONTRIBUTORS_QUICK_START.rst b/CONTRIBUTORS_QUICK_START.rst
index b2aa30c9de..20e6191b3d 100644
--- a/CONTRIBUTORS_QUICK_START.rst
+++ b/CONTRIBUTORS_QUICK_START.rst
@@ -179,17 +179,27 @@ extra while installing airflow.
 
 .. code-block:: bash
 
+For Architectures other than MacOS/ARM
   $ pyenv install --list
   $ pyenv install 3.8.5
   $ pyenv versions
 
+For MacOS/Arm (3.9.1 is the first version of Python to support MacOS/ARM, but 3.8.10 works too)
+  $ pyenv install --list
+  $ pyenv install 3.8.10
+  $ pyenv versions
+
 5. Creating new virtual environment named ``airflow-env`` for installed version python. In next chapter virtual
    environment ``airflow-env`` will be used for installing airflow.
 
 .. code-block:: bash
 
+For Architectures other than MacOS/ARM
   $ pyenv virtualenv 3.8.5 airflow-env
 
+For MacOS/Arm (3.9.1 is the first version of Python to support MacOS/ARM, but 3.8.10 works too)
+  $ pyenv virtualenv 3.8.10 airflow-env
+
 6. Entering virtual environment ``airflow-env``
 
 .. code-block:: bash