3

Pandas 依赖于 numpy,安装 pandas 依赖项存在一个开放构建问题。无论如何,在下面的示例中为什么 pip 退出 numpy 有什么想法吗?如果使用需求文件也会发生。

$virtualenv /tmp/pandatest
$source /tmp/pandatest/bin/activate
$pip install numpy pandas

然后在 numpy setup 的中间,panda setup 被触发。

  DeprecationWarning)
C compiler: /usr/bin/gcc-4.0 -DNDEBUG -g -O3 -m32

compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -     Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/include -I/Library/Frameworks/Python.framework/Versions/2.6/include/python2.6 -c'
gcc-4.0: _configtest.c
/usr/bin/gcc-4.0 _configtest.o -o _configtest
_configtest
failure.
removing: _configtest.c _configtest.o _configtest
building data_files sources
build_src: building npy-pkg config files
Downloading/unpacking pandas
Running setup.py egg_info for package pandas
# numpy needed to finish setup.  run:

    $ pip install numpy  # or easy_install numpy

....在测试 numpy 时

(pandatest)$ python
Python 2.6.2 (r262:71600, Apr 16 2009, 09:17:39) 
[GCC 4.0.1 (Apple Computer, Inc. build 5250)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import numpy
Traceback (most recent call last):
   File "<stdin>", line 1, in <module>
ImportError: No module named numpy
4

1 回答 1

0

可能发生的事情是:

它无法安装“pandas”,因此也没有安装 numpy。

pip 是这样工作的:

如果您尝试安装多个软件包,并且其中一个软件包并不真正存在,则会破坏所有安装,因此由于无法安装 pandas,因此不会安装 pandas。

pip 中有一个问题可以解决这个问题,我尝试解决了这个问题,但并不是那么简单......

反正:

尝试分别安装每个包。

  1. 尝试安装 numpy (它会工作)。
  2. 尝试安装 pandas(它不起作用,但您将能够看到它为什么没有安装)
于 2012-04-24T15:18:14.950 回答