summaryrefslogtreecommitdiff
path: root/INSTALL.rst
blob: 93ce4691974645abd4e6bcfca7298ebdef389e24 (plain)
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
============================
Installing using pip on UNIX
============================

The easiest way to install psutil on UNIX is by using pip (but first you might
need to install python header files; see later).
First install pip:

    $ wget https://bitbucket.org/pypa/setuptools/raw/bootstrap/ez_setup.py
    python ez_setup.py

...then run:

    $ pip install psutil

You may need to install gcc and python header files first (see later).


=====================
Installing on Windows
=====================

Just get the right installer for your Python version and architecture from:
https://pypi.python.org/pypi/psutil/#downloads


==================================
Compiling on Windows using mingw32
==================================

First install mingw (http://www.mingw.org/) then add mingw "bin" folder to
environment PATH (NOTE: this assumes MinGW is installed in C:\MinGW):

    SET PATH=C:\MinGW\bin;%PATH%

You can then compile psutil by running:

    setup.py build -c mingw32

To compile and install:

    setup.py build -c mingw32 install

You can also use make.bat which automatically sets the env variable for you:

    make.bat build

FWIW I managed to compile psutil against all 32-bit Python versions but not
64 bit.


========================================
Compiling on Windows using Visual Studio
========================================

To use Visual Studio to compile psutil you must have the same version of
Visual Studio used to compile your installation of Python which is::

    Python 2.4:  VS 2003
    Python 2.5:  VS 2003
    Python 2.6:  VS 2008
    Python 2.7:  VS 2008
    Python 3.3+: VS 2010

...then run:

    setup.py build

...or:

    make.bat build

Compiling 64 bit versions of Python 2.6 and 2.7 with VS 2008 requires
Windows SDK and .NET Framework 3.5 SP1 to be installed first.
Once you have those run vcvars64.bat, then compile:
http://stackoverflow.com/questions/11072521/

If you do not have the right version of Visual Studio available then try using
MinGW instead.


===================
Installing on Linux
===================

gcc is required and so the python headers. They can easily be installed by
using the distro package manager. For example, on Debian amd Ubuntu:

    $ sudo apt-get install gcc python-dev

...on Redhat and CentOS:

    $ sudo yum install gcc python-devel

Once done, you can build/install psutil with:

    $ python setup.py install


==================
Installing on OS X
==================

OS X installation from source will require gcc which you can obtain as part of
the 'XcodeTools' installer from Apple. Then you can run the standard distutils
commands.
To build only:

    $ python setup.py build

To install and build:

    $ python setup.py install


=====================
Installing on FreeBSD
=====================

The same compiler used to install Python must be present on the system in order
to build modules using distutils. Assuming it is installed, you can build using
the standard distutils commands.

Build only:

    $ python setup.py build

Install and build:

    $ python setup.py install


========
Makefile
========

A makefile is available for both UNIX and Windows (make.bat).  It provides
some automations for the tasks described above and might be preferred over
using setup.py. With it you can::

    $ make install    # just install
    $ make uninstall  # uninstall (needs pip)
    $ make test       # run tests
    $ make clean      # remove installation files