2

在拿到 O'Reilly 的书之前,我在玩 Python 的 pandas 包。当我在成功安装 xcode 和 EPDFree 后尝试安装 pandas 时,使用 easy_install 安装 pandas 时出现了许多警告,当我测试 pandas 是否正常工作时,很明显不是。我曾多次尝试删除并重新安装 pandas 和 Numpy,但均未成功。我是新手,所以肯定做错了什么。

这是我在运行 Python 并尝试导入 pandas 和 Numpy 时得到的:

$ python
Python 2.7.2 (default, Oct 11 2012, 20:14:37) 
[GCC 4.2.1 Compatible Apple Clang 4.0 (tags/Apple/clang-418.0.60)] 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
>>> import pandas
No module named numpy
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/Library/Python/2.7/site-packages/pandas-0.12.0-py2.7-macosx-10.8-intel.egg/pandas/__init__.py", line 6, in <module>
    from . import hashtable, tslib, lib
  File "numpy.pxd", line 157, in init pandas.hashtable (pandas/hashtable.c:19547)
ImportError: No module named numpy

有没有办法可以解决这个问题或重新开始整个安装?

以下是我尝试安装 pandas 和 Numpy 时的更多信息:

$ sudo easy_install pandas
Password:
Searching for pandas
Best match: pandas 0.12.0
Processing pandas-0.12.0-py2.7-macosx-10.8-intel.egg
pandas 0.12.0 is already the active version in easy-install.pth

Using /Library/Python/2.7/site-packages/pandas-0.12.0-py2.7-macosx-10.8-intel.egg
Processing dependencies for pandas
Finished processing dependencies for pandas

$ sudo easy_install numpy
Searching for numpy
Best match: numpy 1.6.1
numpy 1.6.1 is already the active version in easy-install.pth

Using /System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python
Processing dependencies for numpy
Finished processing dependencies for numpy
4

2 回答 2

2

从更清洁的方式开始。如果您要使用 Python 进行大量工作,尤其是在安装其他软件包时,我建议您研究pyenvvirtualenv之类的工具。Pyenv 让您可以轻松管理和在多个版本之间切换(包括微版本 xx3、xx5 等)。Virtualenv 允许您创建独立的 Python 环境,您可以在其中确定特定于特定项目的站点包版本。

它会像这样:

只使用virtualenv:

$ pip install virtualenv
$ virtualenv foo
$ source foo/bin/activate
$ pip install pandas
$ pip install numpy

或者,使用 pyenv + virtualenv (用于额外控制 Python 版本,例如指定 2.7.2),首先安装 pyenv,然后:

$ pip install virtualenv
$ pyenv install 2.7.2
$ pyenv shell 2.7.2
$ virtualenv `which python` foo
$ source foo/bin/activate    
$ pip install pandas
$ pip install numpy
于 2013-10-17T02:50:02.263 回答
0

小心启动正确的 python 版本。如果您使用的是 brew 版本:which python应该返回/usr/local/bin

如果不是这种情况,请检查 .bash_profile 中的 $PATH 环境变量。

这对我有用。我想使用easy_install 与使用brew 和pip 类似。

于 2016-11-13T02:44:29.590 回答