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 0051ad673cb docs(start.rst): Adding pip package name to quick-start page (#49943) 0051ad673cb is described below commit 0051ad673cb9fb5d7fcef0d279384eb050cc1e07 Author: Gabriel TOUZALIN <gabriel.touza...@gmail.com> AuthorDate: Wed Apr 30 18:59:57 2025 +0200 docs(start.rst): Adding pip package name to quick-start page (#49943) * docs(start.rst): clarify the package name with pip Clarifying the package name would make it slightly easier for users * Update airflow-core/docs/start.rst --------- Co-authored-by: Jarek Potiuk <ja...@potiuk.com> --- airflow-core/docs/start.rst | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/airflow-core/docs/start.rst b/airflow-core/docs/start.rst index 6492193a53c..cc80b71f2a2 100644 --- a/airflow-core/docs/start.rst +++ b/airflow-core/docs/start.rst @@ -26,7 +26,9 @@ This quick start guide will help you bootstrap an Airflow standalone instance on Successful installation requires a Python 3 environment. Starting with Airflow 2.7.0, Airflow supports Python 3.9, 3.10, 3.11, and 3.12. - Officially supported installation methods include ``pip`` and ``uv``. Both tools provide a streamlined workflow for installing Airflow and managing dependencies. + Officially supported installation methods is with``pip`. + + Run ``pip install apache-airflow[EXTRAS]==AIRFLOW_VERSION --constraint "https://raw.githubusercontent.com/apache/airflow/constraints-AIRFLOW_VERSION/constraints-PYTHON_VERSION.txt"``, for example ``pip install "apache-airflow[celery]==3.0.0" --constraint "https://raw.githubusercontent.com/apache/airflow/constraints-3.0.0/constraints-3.9.txt"`` to install Airflow in a reproducible way.