升级statsmodels的devel版本

时间:2014-05-20 08:18:49

标签: python python-2.7 statsmodels

我已经获得了0.5.0的statsmodels,我想升级到0.6.0的最新版本。

所以我做了

$ git clone git://github.com/statsmodels/statsmodels.git
$ cd statsmodels
$ pip install .

但是,我收到一个错误:

error: can't copy 'statsmodels/nonparametric/_smoothers_lowess.c': doesn't exist or not a regular file

1 个答案:

答案 0 :(得分:2)

显然,解决方案是安装Cython(我认为已经安装了,或者说statsmodels 0.5.0以前是如何工作的??!?)。 无论如何,它变成了:

$ git clone git://github.com/statsmodels/statsmodels.git
$ cd statsmodels
$ pip install cython
$ pip install .
$ python
Python 2.7.3 |CUSTOM| (default, Apr 11 2012, 17:52:16) 
[GCC 4.1.2 20080704 (Red Hat 4.1.2-44)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import statsmodels
>>> statsmodels.version.full_version
'0.6.0.dev-b472807'