一、问题
A module that was compiled using NumPy 1.x cannot be run in NumPy 2.0.0 as it may crash. To support both 1.x and 2.x versions of NumPy, modules must be compiled with NumPy 2.0. Some module may need to rebuild instead e.g. with ‘pybind11>=2.12’.
二、解决方法
pip install "numpy<2"
三、分析
6月17日 numpy 更新到了2.0 版本,NumPy 2.0.0 是一个重大的版本更新,引入了许多变化,包括新功能和重大更改。一些库还没来得及更新。这时候如果着急使用,可以先回退版本。
NumPy 2.0.0 是一个重大的版本更新,引入了许多变化,包括新功能和重大更改。以下是 NumPy 2.0.0 中的一些关键变化和更新: