scikits.statsmodels不能与pip Python 3.5一起安装


官方

文档 https://scikits.appspot.com/statsmodels 说"scikits.statsmodels已经针对Python 3.2进行了移植和测试。

$ pip install scikits.statsmodels
Collecting scikits.statsmodels
   Using cached scikits.statsmodels-0.3.1.tar.gz
   Complete output from command python setup.py egg_info:
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "/tmp/pip-build-dbu7u2oo/scikits.statsmodels/setup.py", line 96
        print "debug import success GIT_REVISION", GIT_REVISION
                                            ^
    SyntaxError: Missing parentheses in call to 'print'
    ----------------------------------------
Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-build-dbu7u2oo/scikits.statsmodels/

我该如何解决这个问题?

正如scikits.statsmodels的PyPI页面所说:

scikits.statsmodels的名称已更改为statsmodels,新版本已 http://pypi.python.org/pypi/statsmodels

所以试试

pip install statsmodels

FWIW 我在 3.6 中经常使用统计模型,所以我非常乐观它会起作用。

最新更新