To obtain the latest released version of statsmodels using setuptools:
easy_install -U statsmodels
Or follow this link to our PyPI page.
We do not release very often but the master branch of our source code is usually fine for everyday use. You can get the latest source from our github repository. Or if you have git installed:
git clone git://github.com/statsmodels/statsmodels.git
If you want to keep up to date with the source on github just periodically do:
git pull
in the statsmodels directory.
While not strictly necessary for 0.4, it is recommended that you will have a C compiler installed to take advantage of Cython code where available. You can follow the instructions below to get a C compiler setup for Windows.
Once you have obtained the source, you can do (with appropriate permissions):
python setup.py install
Or:
python setup.py build
python setup.py install
You can build 32-bit version of the code on windows using mingw32.
First, get and install mingw32. Then, you’ll need to edit distutils.cfg. This is usually found somewhere like C:Python27Libdistutilsdistutils.cfg. Add these lines:
[build]
compiler=mingw32
Then in the statsmodels directory do:
python setup.py build
python setup.py install
OR
You can build 32-bit or 64-bit versions of the code using the Microsoft SDK. Detailed instructions can be found on the Cython wiki here. The gist of these instructions follow. You will need to download the free Windows SDK C/C++ compiler from Microsoft. You must use the Microsoft Windows SDK for Windows 7 and .NET Framework 3.5 SP1 to be comptible with Python 2.6, 2.7, 3.1, and 3.2. Other Python versions are as yet untested. Please report results to the mailing list. The link for the 3.5 version is
Get the ISO file GRMSDKX_EN_DVD.iso for AMD64. After you install this, open the SDK Command Shell (Start -> All Programs -> Microsoft Windows SDK v7.0 -> CMD Shell). CD to the statsmodels directory and type:
set DISTUTILS_USE_SDK=1
To build a 64-bit application type:
setenv /x64 /release
To build a 32-bit application type:
setenv /x86 /release
The prompt should change colors to green. Then proceed as usual to install:
python setup.py build
python setup.py install