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