我正在尝试安装库 GPy。虽然安装成功,但我对我的numpy版本有疑问。
GPy 库可以在这里找到https://github.com/SheffieldML/GPy
我的 numpy 的当前版本是 1.9.3
>>> import numpy
>>> numpy.version.version
'1.9.3'
但是当我python setup.py install
为 GPy 表演时,它指的是 numpy 1.10.0。我在 python 2.7/site-packages 中检查了只有一个版本的 numpy 也存在 1.9.3
Using /home/vinod/anaconda/lib/python2.7/site-packages
Searching for scipy==0.16.0
Best match: scipy 0.16.0
Adding scipy 0.16.0 to easy-install.pth file
Using /home/vinod/anaconda/lib/python2.7/site-packages
Searching for numpy==1.10.0
Best match: numpy 1.10.0
Adding numpy 1.10.0 to easy-install.pth file
Using /home/vinod/anaconda/lib/python2.7/site-packages
Finished processing dependencies for GPy==0.8.8
vinod@vinod-Lenovo-G580:~/GPy$
因为它指的是另一个版本,所以会出现错误
File"__init__.pxd", line 155, in init GPy.util.linalg_cython (GPy/util/linalg_cython.c:4238)
ValueError: numpy.dtype has the wrong size, try recompiling
谁能告诉我如何找到和删除 numpy 1.10.0 ?