0
Windows XPを実行しているマシンにPython 2.5でインストールされたPandasを取得しようとしています。WindowsでPython 2.5を使ってパンダをインストールする
インストールがOK終了しているようだが、私は
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__'
は、私の知る限り、私はすべての依存関係を持っています正しくインストールされていて、問題はPython標準ライブラリ(?)の一部であるfunctools.py
と関係があります。
誰にも提案はありますか? PandasはPython 2.5で動作するはずですので、Pythonの設定に問題があると思います。
Thanks Wes。他にもいくつかの詳細があります(http://groups.google.com/group/pystatsmodels/browse_thread/thread/8c956f3a94ec3a06/c9fc539766e02235?pli=1)。私は昨晩私のラップトップに2.5のPandasをインストールしようとしました。うまくいきましたので、明らかにこの特定のマシンの問題です。私は実験を続けます... – JamesS