我正在尝试在运行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.py
有关,{{1}}是Python标准库(?)的一部分。
有人有任何建议吗? Pandas应该使用Python 2.5,所以我认为这是我的Python配置的问题。
答案 0 :(得分:0)
这是ArcGIS或Python.org附带的Python发行版吗?正如邮件列表中所讨论的那样,这似乎不是Python 2.5本身的问题,而是潜在的环境