scikits.statsmodels can not be installed with pip python 3.5 -
the official documentation https://scikits.appspot.com/statsmodels says "scikits.statsmodels has been ported , tested python 3.2." get:
$ pip install scikits.statsmodels collecting scikits.statsmodels using cached scikits.statsmodels-0.3.1.tar.gz complete output 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 'print' ---------------------------------------- command "python setup.py egg_info" failed error code 1 in /tmp/pip-build-dbu7u2oo/scikits.statsmodels/
how can fix this?
as pypi page scikits.statsmodels says:
the name of scikits.statsmodels has been changed statsmodels, new version @ http://pypi.python.org/pypi/statsmodels
so try
pip install statsmodels
fwiw use statsmodels regularly in 3.6, i'm pretty optimistic it'll work. :-)
Comments
Post a Comment