Hey folks, I'm trying to add Airflow orchestrator ...
# plugins-general
m
Hey folks, I'm trying to add Airflow orchestrator into my Meltano project during installation its fails to add the plugin. While check with log its shows that "ERROR: Failed building wheel for numpy ERROR: Could not build wheels for numpy, which is required to install pyproject.toml-based projects". Currently i'm using Mac 12.x and M1 chipset
p
You might need to take a look at https://gist.github.com/yatsu/47bdde35e8abbe7d14bbe730342aa9e0 to see how to point numpy at the location for some of your libraries. For an example from my computer:
Copy code
$ cat ~/.numpy-site.cfg  
[openblas]
libraries = openblas
library_dirs = /opt/homebrew/opt/openblas/lib
include_dirs = /opt/homebrew/opt/openblas/include
runtime_library_dirs = /opt/homebrew/opt/openblas/lib
m
@ptd Its not working for me