aboutsummaryrefslogtreecommitdiffstats
path: root/doc-src/install.html
blob: f2fd15ecd9e3a3f7389c3e05d26178912e2e8226 (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
## On This Page

* [Installation From Source](#docSource)
* [Installation On Mac OS X](#docOSX)
* [Installation On Ubuntu](#docUbuntu)
* [Installation On Windows](#docWindows)

## <a id=docSource></a>Installing From Source

You can install mitmproxy with pip:

<pre class="terminal">
$ pip install mitmproxy
</pre>

If you also want to install the optional packages AMF, protobuf and CSS
content views, do this:

<pre class="terminal">
$ pip install "mitmproxy[contentviews]"
</pre>

If you are looking for a more information on how to install mitmproxy directly from the master branch on GitHub, or are wanting to set up mitmproxy for developement purposes, see the <a href="https://github.com/mitmproxy/mitmproxy/blob/master/README.mkd#hacking">Hacking</a> section of the README on GitHub. 

## <a id=docOSX></a>Installation On Mac OS X

The easiest way to get up and running on OSX is to download the pre-built binary packages from [mitmproxy.org](http://mitmproxy.org). If you still want to install using pip, there are a few things to keep in mind:

- If you're running a Python interpreter installed with homebrew (or similar), you may have to install some dependencies by hand. 
- Make sure that XCode is installed from the App Store, and that the command-line tools have been downloaded (XCode/Preferences/Downloads).

There are a few bits of customization you might want to do to make mitmproxy comfortable to use on OSX. The default color scheme is optimized for a dark background terminal, but you can select a palette for a light terminal background with the --palette option. You can use the OSX <b>open</b> program to create a simple and effective <b>~/.mailcap</b> file to view request and response bodies:

<pre class="terminal">
application/*; /usr/bin/open -Wn %s
audio/*; /usr/bin/open -Wn %s
image/*; /usr/bin/open -Wn %s
video/*; /usr/bin/open -Wn %s
</pre>

From now on you can run <a href="mitmproxy.html">mitmproxy</a> or <a href="mitmdump.html">mitmdump</a> from a terminal.

## <a id=docUbuntu></a>Installation On Ubuntu

Ubuntu comes with Python but we need to install pip, python-dev and several libraries.  This was tested on a fully patched installation of Ubuntu 14.04.

<pre class="terminal">
$ sudo apt-get python-pip python-dev libffi-dev libssl-dev libxml2-dev libxslt1-dev

$ sudo pip install mitmproxy
</pre>

From now on you can run <a href="mitmproxy.html">mitmproxy</a> or <a href="mitmdump.html">mitmdump</a> from a terminal.

## <a id=docWindows></a>Installation On Windows

Please note that mitmdump is the only component of mitmproxy that is supported on Windows.

Install the latest version of Python 2 from the <a href="https://www.python.org/downloads/windows/">Python website</a>.  The Windows MSI installer is fairly straightforward and even includes pip as long as you are installing a version of Python 2 after 2.7.9.  For the most part, you can accept the defaults but one option you should change during installation is "Add python.exe to Path".  This will make it easier to run Python.
<img src="@!urlTo('winpythoninstaller.jpg')!@"/>

Now log out of Windows and back in to finish having Python added to your PATH.

<pre class="terminal">
C:\> pip install mitmproxy
</pre>

From now on you can run <a href="mitmdump.html">mitmdump</a> from a Command Prompt.