0

在 virtualenv 中工作,我正在尝试安装 scikit-image,但它失败了,告诉我我需要更新(或任何)版本的 numpy。

$ sudo pip install -U scikit-image
...
ImportError: You need `numpy` version 1.6 or later.
----------------------------------------
Command python setup.py egg_info failed with error code 1 in /Users/aps/Dropbox/experiments/build/scikit-image

我不明白这一点,因为从 Python 开始,numpy 1.7 已经在我的路上了。

$ python 
Python 2.7.1 (r271:86832, Jul 31 2011, 19:30:53) 
[GCC 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2335.15.00)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import numpy
>>> numpy.__version__
'1.7.1'

怎么回事 - 为什么安装 scikit-image 的系统看不到最新版本的 numpy?我该如何解决这个问题?

numpy 的路径似乎已经在我的~/.bash_profile

>>> numpy.__path__
['/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy']
>>> exit()
$ vi ~/.bash_profile
...
export PYTHONPATH=/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages:$PYTHONPATH

更新:

numpy 1.7 版也在su路径中:

$ sudo python 
Password:
Python 2.7.5 (default, Aug  1 2013, 00:59:40) 
[GCC 4.2.1 Compatible Apple Clang 4.1 ((tags/Apple/clang-421.11.66))] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import numpy
>>> numpy.__version__
'1.7.1'
4

1 回答 1

0

您需要确保所有这些包都在其virtualenv自身中可用。您是否尝试pip freeze在采购后运行bin/activate?使用该virtualenv包,默认情况下“预安装”的唯一库是distribute,所有其他依赖项必须手动添加。使用venv(内置于 py3k),您的所有系统库都应该可以直接使用。你用的是哪个?

于 2013-08-22T15:55:56.040 回答