2017-04-06 1 views
4

공식 문서 https://scikits.appspot.com/statsmodels에는 "scikits.statsmodels가 파이썬 3.2 용으로 포팅되어 테스트되었습니다."라고되어 있습니다. 하지만 얻을 수 있습니다 :scikits.statsmodels을 pip python 3.5와 함께 설치할 수 없습니다.

$ 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 page으로

+0

여기 복사 : https://github.com/statsmodels/statsmodels/issues/3598 – user3313834

답변

2

는 말한다 :

scikits.statsmodels의 이름은 그래서 시도 statsmodels로 변경, 새 버전 http://pypi.python.org/pypi/statsmodels

에있다되었습니다

pip install statsmodels 

FWIW 3.6에서 statsmodels을 정기적으로 사용하기 때문에 매우 효과적 일 것입니다. :-)

관련 문제