0

我正在尝试在运行 Windows XP 的机器上安装带有 Python 2.5 的 Pandas。

安装似乎可以完成,但是当我尝试时

from pandas import *

我收到以下错误:

Traceback (most recent call last):
  File "<interactive input>", line 1, in <module>
  File "c:\python25\lib\site-packages\pandas-0.7.2-py2.5-win32.egg\pandas\__init__.py", line 24, in <module>
    from pandas.stats.api import *
  File "c:\python25\lib\site-packages\pandas-0.7.2-py2.5-win32.egg\pandas\stats\api.py", line 7, in <module>
    from pandas.stats.moments import *
  File "c:\python25\lib\site-packages\pandas-0.7.2-py2.5-win32.egg\pandas\stats\moments.py", line 388, in <module>
    rolling_max = _rolling_func(_tseries.roll_max, 'Moving maximum')
  File "c:\python25\lib\site-packages\pandas-0.7.2-py2.5-win32.egg\pandas\stats\moments.py", line 379, in _rolling_func
    def f(arg, window, min_periods=None, time_rule=None):
  File "C:\Python25\Lib\functools.py", line 35, in update_wrapper
    getattr(wrapper, attr).update(getattr(wrapped, attr))
AttributeError: 'builtin_function_or_method' object has no attribute '__dict__'

据我所知,我已经正确安装了所有依赖项,问题与functools.pyPython 标准库(?)的一部分有关。

请问有人有什么建议吗?Pandas 应该适用于 Python 2.5,所以我认为这是我的 Python 配置的问题。

4

1 回答 1

0

这是 ArcGIS 或 Python.org 附带的 Python 发行版吗?正如邮件列表中所讨论的,这似乎不是 Python 2.5 本身的问题,但可能是您的环境

于 2012-04-05T22:43:43.733 回答