aboutsummaryrefslogtreecommitdiffstats
path: root/doc-src/install.html
diff options
context:
space:
mode:
authorMaximilian Hils <git@maximilianhils.com>2015-04-26 19:39:21 +0200
committerMaximilian Hils <git@maximilianhils.com>2015-04-26 19:39:21 +0200
commitb40133a4f31cd10f8f1d3237907931a1dba6087f (patch)
tree4a465915a0ba39f20fe3a2b48e2ddd6a1fc81d26 /doc-src/install.html
parent1742017752164c3fe28d6a549698ccecadf4cf49 (diff)
parentea8e58f037c66fdf7523d4781720f182a1ed06da (diff)
downloadmitmproxy-b40133a4f31cd10f8f1d3237907931a1dba6087f.tar.gz
mitmproxy-b40133a4f31cd10f8f1d3237907931a1dba6087f.tar.bz2
mitmproxy-b40133a4f31cd10f8f1d3237907931a1dba6087f.zip
Merge pull request #555 from elitest/userinstalldocs
User Installation Documentation update
Diffstat (limited to 'doc-src/install.html')
-rw-r--r--doc-src/install.html78
1 files changed, 46 insertions, 32 deletions
diff --git a/doc-src/install.html b/doc-src/install.html
index 682e317e..80298a4a 100644
--- a/doc-src/install.html
+++ b/doc-src/install.html
@@ -1,40 +1,37 @@
+## On This Page
-## Installing from source
+* [Installation On Ubuntu](#docUbuntu)
+* [Installation On Mac OS X](#docOSX)
+* [Installation On Windows](#docWindows)
-The preferred way to install mitmproxy - whether you're installing the latest
-release or from source - is to use [pip](http://www.pip-installer.org/). If you
-don't already have pip on your system, you can find installation instructions
-[here](http://www.pip-installer.org/en/latest/installing.html).
+## <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">
-pip install mitmproxy
+$ sudo apt-get install python-pip python-dev libffi-dev libssl-dev libxml2-dev libxslt1-dev
+
+$ sudo pip install mitmproxy
</pre>
-If you also want to install the optional packages AMF, protobuf and CSS
-content views, do this:
+Once installation is complete you can run <a href="mitmproxy.html">mitmproxy</a> or <a href="mitmdump.html">mitmdump</a> from a terminal.
+
+### Installation From Source
+
+If you would like to install mitmproxy directly from the master branch on GitHub or would like to get set up to contribute to the project, install the dependencies with apt:
<pre class="terminal">
-pip install "mitmproxy[contentviews]"
+$ sudo apt-get install python-pip python-dev libffi-dev libssl-dev libxml2-dev libxslt1-dev
</pre>
+Then see the <a href="https://github.com/mitmproxy/mitmproxy/blob/master/README.mkd#hacking">Hacking</a> section of the README on GitHub.
-## OSX
-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:
+## <a id=docOSX></a>Installation On Mac OS X
-- 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).
+The easiest way to get up and running on OSX is to download the pre-built binary packages from [mitmproxy.org](http://mitmproxy.org).
-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:
+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
@@ -43,17 +40,34 @@ image/*; /usr/bin/open -Wn %s
video/*; /usr/bin/open -Wn %s
</pre>
+Once installation is complete you can run <a href="mitmproxy.html">mitmproxy</a> or <a href="mitmdump.html">mitmdump</a> from a terminal.
+
+### Installation From Source
+
+If you would like to install mitmproxy directly from the master branch on GitHub or would like to get set up to contribute to the project, ithere are a few OS X specific things to keep in mind.
+
+- Make sure that XCode is installed from the App Store, and that the command-line tools have been downloaded (XCode/Preferences/Downloads).
+- If you're running a Python interpreter installed with homebrew (or similar), you may have to install some dependencies by hand.
+
+Then see the <a href="https://github.com/mitmproxy/mitmproxy/blob/master/README.mkd#hacking">Hacking</a> section of the README on GitHub.
+
+## <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')!@"/>
+
+<pre class="terminal">
+C:\> set PATH = C:\Python27;C:\Python27\Scripts;%PATH%
+
+C:\> pip install mitmproxy
+</pre>
-## Ubuntu
+Once installation is complete you can run <a href="mitmdump.html">mitmdump</a> from a Command Prompt.
-On Ubuntu, you will need the following native packages to install mitmproxy
-from source:
+### Installation From Source
-- build-essential
-- python-dev
-- libffi-dev
-- libssl-dev
-- libxml2-dev
-- libxslt1-dev
+If you would like to install mitmproxy directly from the master branch on GitHub or would like to get set up to contribute to the project, install Python as outlined above, then see the <a href="https://github.com/mitmproxy/mitmproxy/blob/master/README.mkd#hacking">Hacking</a> section of the README on GitHub.