2015-09-04 14:17:55 +00:00
|
|
|
.. _install:
|
|
|
|
|
|
|
|
Installation
|
|
|
|
============
|
|
|
|
|
|
|
|
.. _install-ubuntu:
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
2015-10-23 01:11:06 +00:00
|
|
|
>>> sudo apt-get install python-pip python-dev libffi-dev libssl-dev libxml2-dev libxslt1-dev libjpeg8-dev zlib1g-dev
|
2015-09-04 14:17:55 +00:00
|
|
|
>>> sudo pip install mitmproxy
|
|
|
|
|
|
|
|
Once installation is complete you can run :ref:`mitmproxy` or :ref:`mitmdump` from a terminal.
|
|
|
|
|
|
|
|
Installation From Source (Ubuntu)
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
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 as you would for a regular
|
|
|
|
mitmproxy installation (see :ref:`install-ubuntu`).
|
|
|
|
Then see the Hacking_ section of the README on GitHub.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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`_.
|
|
|
|
|
|
|
|
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 **open** program to create a simple and effective ``~/.mailcap`` file to view
|
|
|
|
request and response bodies:
|
|
|
|
|
|
|
|
.. code-block:: none
|
|
|
|
|
|
|
|
application/*; /usr/bin/open -Wn %s
|
|
|
|
audio/*; /usr/bin/open -Wn %s
|
|
|
|
image/*; /usr/bin/open -Wn %s
|
|
|
|
video/*; /usr/bin/open -Wn %s
|
|
|
|
|
|
|
|
Once installation is complete you can run :ref:`mitmproxy` or :ref:`mitmdump` from a terminal.
|
|
|
|
|
|
|
|
|
|
|
|
Installation From Source (Mac OS X)
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
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, there 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 Hacking_ section of the README on GitHub.
|
|
|
|
|
|
|
|
Installation On Windows
|
|
|
|
-----------------------
|
|
|
|
|
|
|
|
.. note::
|
|
|
|
Please note that mitmdump is the only component of mitmproxy that is supported on Windows at
|
|
|
|
the moment.
|
|
|
|
|
|
|
|
**There is no interactive user interface on Windows.**
|
|
|
|
|
|
|
|
|
|
|
|
First, install the latest version of Python 2.7 from the `Python website`_.
|
|
|
|
If you already have an older version of Python 2.7 installed, make sure to install pip_
|
|
|
|
(pip is included in Python 2.7.9+ by default).
|
|
|
|
|
|
|
|
Next, add Python and the Python Scripts directory to your **PATH** variable.
|
|
|
|
You can do this easily by running the following in powershell:
|
|
|
|
|
|
|
|
>>> [Environment]::SetEnvironmentVariable("Path", "$env:Path;C:\Python27;C:\Python27\Scripts", "User")
|
|
|
|
|
|
|
|
Now, you can install mitmproxy by running
|
|
|
|
|
|
|
|
>>> pip install mitmproxy
|
|
|
|
|
|
|
|
Once the installation is complete, you can run :ref:`mitmdump` from a command prompt.
|
|
|
|
|
|
|
|
Installation From Source (Windows)
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
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
|
|
|
|
Hacking_ section of the README on GitHub.
|
|
|
|
|
|
|
|
|
2015-09-16 01:59:06 +00:00
|
|
|
.. _Hacking: https://github.com/mitmproxy/mitmproxy/blob/master/README.rst#hacking
|
2015-09-04 14:17:55 +00:00
|
|
|
.. _mitmproxy.org: https://mitmproxy.org/
|
|
|
|
.. _`Python website`: https://www.python.org/downloads/windows/
|
2015-09-07 08:52:18 +00:00
|
|
|
.. _pip: https://pip.pypa.io/en/latest/installing.html
|