pandalee99 commented on code in PR #2056: URL: https://github.com/apache/fury/pull/2056#discussion_r1952250458
########## python/README.md: ########## @@ -6,7 +6,10 @@ Fury is a blazingly-fast multi-language serialization framework powered by just- ```bash cd python -pip install pyarrow==14.0.0 Cython wheel numpy pytest +# For Python versions less than 3.13, numpy 2 is not currently supported. +pip install pyarrow==14.0.0 Cython wheel 'numpy<2' pytest Review Comment: 'then when we install pyarrow, it will install correct numpy automatically.' I don't think so. when i try to : ``` cmd pip uninstall -y numpy pip install pyarrow==14.0.0 numpy ``` <img width="1165" alt="image" src="https://github.com/user-attachments/assets/3a28469b-dd38-4846-9d95-7f9fb66fe5fa" /> but, if numpy2 is existing, make cmd: ``` cmd pip install pyarrow==14.0.0 'numpy<2' ``` <img width="1240" alt="image" src="https://github.com/user-attachments/assets/4411b09f-213a-4112-b993-9bc5e01a6038" /> it will : Installing collected packages: numpy, pyarrow Attempting uninstall: numpy Found existing installation: numpy 2.0.2 Uninstalling numpy-2.0.2: Successfully uninstalled numpy-2.0.2 Successfully installed numpy-1.26.4 pyarrow-14.0.0 After practice, I think this is OK -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
