This is an automated email from the ASF dual-hosted git repository. ephraimanierobi pushed a commit to branch v2-8-test in repository https://gitbox.apache.org/repos/asf/airflow.git
commit 6fe0b77cc397d64d2400b493eec08f3d2d060b20 Author: y.yoshida5 <[email protected]> AuthorDate: Sun Dec 24 03:55:51 2023 +0900 Add libxml2 install command for macOS in contributor quick start doc (#36388) * add libxml2 install command for macOS in contributor quick start doc * Update CONTRIBUTORS_QUICK_START.rst Co-authored-by: Andrey Anshin <[email protected]> --------- Co-authored-by: Andrey Anshin <[email protected]> (cherry picked from commit e6b4f7d8c0735ca8fbd069481f37eb2cd341bcd0) --- contributing-docs/03_contributors_quick_start.rst | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/contributing-docs/03_contributors_quick_start.rst b/contributing-docs/03_contributors_quick_start.rst index 71889c6e31..bed3928d9c 100644 --- a/contributing-docs/03_contributors_quick_start.rst +++ b/contributing-docs/03_contributors_quick_start.rst @@ -495,10 +495,18 @@ To avoid burden on CI infrastructure and to save time, Pre-commit hooks can be r 1. Installing required packages +on Debian / Ubuntu, install via + .. code-block:: bash sudo apt install libxml2-utils +on macOS, install via + +.. code-block:: bash + + brew install libxml2 + 2. Installing required Python packages .. code-block:: bash
