potiuk commented on issue #52753:
URL: https://github.com/apache/airflow/issues/52753#issuecomment-3094414086

   It looks your numpy installed from the host is causing the binary 
compatibility issues @sjyangkevin. When you have binary version of the .whl 
file (with numpy having c extensions) it is compiled against system librarires 
of your host when you run it on the host - it might well be that the wheel file 
needed to be installed in debian bookworm inside the CI container in breeze is 
different - there are at least 4 different manylinux binary wheels for numpy.
   
   You should rather install the new numpy version inside the CI image.
   
   1) run breeze start-airflow
   2) in the terminal window run `pip install numpy==2.2.6`
   3) Ctrl+c and restart all other airflow components
   
   Or you can use 
https://github.com/apache/airflow/blob/main/dev/breeze/doc/02_customizing.rst#customizing-breeze-startup
 and create init.sh script that will run this `pip install` so that you do not 
have to restarrt the components manually.
   
   Let us know if that worked..


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@airflow.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to