运行一些python脚本时出现以下警告
/usr/local/lib/python2.6/dist-packages/scipy/spatial/__init__.py:91: RuntimeWarning: numpy.flatiter size changed, may indicate binary incompatibility
from .qhull import *
我注意到,当针对与运行时版本不同的numpy版本编译scipy时,其他人也看到了类似的错误。在安装了两个之后我确实升级了numpy和scipy,以获得其他一些python库。目前的版本是numpy 1.9.1和scipy 0.14.0。
正如在其他线程中所建议的那样,我已经卸载并重新安装了numpy和scipy。我也尝试使用pip install --no-use-wheel
,使用easy_install
,降级为numpy 1.7.1,但都无济于事。
有关从这里做什么的任何建议?提前谢谢。