我得到的错误如下:
$ python -c 'from sklearn import preprocessing'
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "/usr/local/lib/python2.6/dist-packages/scikit_learn-0.10-py2.6-linux-x86_64.egg/sklearn/preprocessing/__init__.py", line 17, in <module>
from ..utils.sparsefuncs import inplace_csr_row_normalize_l1
File "numpy.pxd", line 174, in init sklearn.utils.sparsefuncs (sklearn/utils/sparsefuncs.c:4605)
ValueError: numpy.ndarray has the wrong size, try recompiling
我认为这是numpy
而非scikitlearn
的错误(请参阅here)
我正在使用使用git clone安装的scipy
和numpy
的开发版本(它工作正常)。但是我需要“降级”到稳定版本才能发布。所以我删除了git文件夹,并从/usr/local/lib/python-2.6/
中删除了egg文件。 (为了安全起见)我做了:
$ sudo apt-get install libblas-dev liblapack-dev
$ sudo apt-get install python-dev python-numpy python-scipy
$ sudo easy_install -U distribute
$ sudo easy_install -U numpy
$ sudo easy_install -U scipy
最后两个都给了我警告......
RuntimeWarning: Parent module 'numpy.distutils' not found while handling absolute import
......我不确定这是不是这里出了什么问题?
$ python -c 'import numpy; print numpy.__version__'
1.6.2
$ python -c 'import scipy; print scipy.__version__'
0.10.1
我已经尝试删除apt安装版本,但这似乎没有帮助。这是带有2.6.32-21-server
内核的Ubuntu 10.04(清晰)
答案 0 :(得分:0)
我建议安装Enthought Python Distribution。它是免费的,安装在Ubuntu 10.04上,随附Numpy,Scipy,matplotlib等。