当前位置: 代码迷 >> 综合 >> numpy.ndarray has the wrong size, try recompiling.
  详细解决方案

numpy.ndarray has the wrong size, try recompiling.

热度:55   发布时间:2024-01-13 14:00:57.0

在安装paddledetection测试的时候出现numpy.ndarray has the wrong size, try recompiling.,但是明明依赖已经装好了。

出现这个原因是Python 包的版本问题,例如安装了较旧版本的 Numpy,但安装了较新版本的 Pandas。

使用

pip install numpy -U

升级numpy即可

  相关解决方案