遇到类似于这种问题:
A module that was compiled using NumPy 1.x cannot be run in
NumPy 2.0.2 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'.
If you are a user of the module, the easiest solution will be to
downgrade to 'numpy<2' or try to upgrade the affected module.
We expect that some modules will need time to support NumPy 2.
那么就卸载原来的高版本numpy
,重新下载低版本的numpy
pip uninstall numpy
pip install numpy==1.25.0
完事!
numpy总是和其他包相冲突,因为numpy很早就有了,大家用的时候版本还很低,所以会和其他比较新的包冲突。
参考
[1] 解决:A module that was compiled using NumPy 1.x cannot be run in NumPy 2.0.2 as it may crash.