forked from statsmodels/statsmodels
-
Notifications
You must be signed in to change notification settings - Fork 0
/
INSTALL.txt
75 lines (44 loc) · 1.68 KB
/
INSTALL.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
Dependencies
------------
Python >= 2.5
NumPy >= 1.4.0
SciPy >= 0.7
Optional Dependencies
---------------------
Matplotlib is needed for plotting functionality and running many of the examples
http://matplotlib.sourceforge.net/
To build the documentation you will need Sphinx
http://sphinx.pocoo.org/
The documentation is available online as mentioned below.
To run the test suite you will need nose
http://somethingaboutorange.com/mrl/projects/nose/
Easy Install
------------
To get the latest release using easy_install you need setuptools (easy_install)
http://peak.telecommunity.com/DevCenter/EasyInstall
Then you can do (with proper permissions)
easy_install -U scikits.statsmodels
Ubuntu/Debian
-------------
On (X)ubuntu you can get dependencies through
sudo apt-get install python python-setuptools python-numpy python-scipy
You may install with easy_install, from source as mentioned below, or
from the NeuroDebian repository: http://neuro.debian.net
Installing from Source
----------------------
Download and extract the source distribution from PyPI or github
PyPI: http://pypi.python.org/pypi/scikits.statsmodels
Github: https://github.com/statsmodels/statsmodels/archives/master
Or clone the bleeding edge code from our repository on github at
https://github.com/statsmodels/statsmodels
In the statsmodels directory do (with proper permissions)
python setup.py install
For the 0.3.0 release, there is some code written using Cython. If you have
a C compiler, you can do
python setup.py --with-cython
python setup.py install
Documentation
-------------
You may find more information about the project and installation in our
documentation
http://statsmodels.sourceforge.net/