GitHub user maprihoda added a comment to the discussion: Google-re2 
installation fails

Not using conda. This helped me on my Mac:

```
brew install llvm
brew install abseil


Update your ~/.zshrc:

export PATH="/opt/homebrew/opt/llvm/bin:$PATH"

export LDFLAGS="-L/opt/homebrew/opt/llvm/lib"
export CPPFLAGS="-I/opt/homebrew/opt/llvm/include"

export CC="/opt/homebrew/opt/llvm/bin/clang"
export CXX="/opt/homebrew/opt/llvm/bin/clang++"

export CPLUS_INCLUDE_PATH="/opt/homebrew/include:$CPLUS_INCLUDE_PATH"
export LIBRARY_PATH="/opt/homebrew/lib:$LIBRARY_PATH"

Reload:

source ~/.zshrc

Then:

pip install --upgrade pip setuptools
pip install pendulum
pip install pybind11

pip install -r requirements.txt
```

GitHub link: 
https://github.com/apache/airflow/discussions/32852#discussioncomment-14669072

----
This is an automatically sent email for [email protected].
To unsubscribe, please send an email to: [email protected]

Reply via email to