Search
-
Recent Posts
Tags
adwords amazon analytics api apple aws blog chrome chromium cloud Design dropbox ec2 email error facebook firefox google google-apps homebrew ipad javascript jQuery linux lion mac microsoft mysql osx os x paypal php plugin quicksilver raspberry pi scam social spam twitter ubuntu unix video windows woo wordpress
Tag Archives: proxy
Install mitmproxy from source on Ubuntu
If you want to live on the dangerous side, you can install mitmproxy from its master branch. If you encounter any bugs, please do us the favor and report them on the Github issue tracker briefly. Install from source using PIP pip uninstall mitmproxy netlib pip install git+https://github.com/mitmproxy/[email protected] pip install git+https://github.com/mitmproxy/[email protected] Install from source on Ubuntu Installing mitmproxy master from sources on stock Ubuntu – first uninstall using: pip uninstall mitmproxy netlib Now install the required tools: $ sudo apt-get install -y build-essential libssl-dev libffi-dev python-dev python-pip libxml2-dev libxslt-dev git Now install with sudo: $ sudo pip install git+https://github.com/mitmproxy/[email protected] $ sudo pip install git+https://github.com/mitmproxy/[email protected] Now start up a python console and paste in these two commands – this is a workaround for issue 32 : $ sudo python # >>> from netlib import certffi >>> exit() Source: github gist