Created
August 11, 2016 12:17
-
-
Save flyte/0a83041b70b85cbc3f5d6fce1599d755 to your computer and use it in GitHub Desktop.
Instructions for installing mitmproxy on a Raspberry Pi using Raspbian.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Install jessie-backports APT repository and OpenSSL 1.0.2: | |
echo "deb http://ftp.debian.org/debian jessie-backports main" | sudo tee /etc/apt/sources.list.d/jessie-backports.list | |
gpg --keyserver pgpkeys.mit.edu --recv-key 8B48AD6246925553 | |
gpg -a --export 8B48AD6246925553 | sudo apt-key add - | |
gpg --keyserver pgpkeys.mit.edu --recv-key 7638D0442B90D010 | |
gpg -a --export 7638D0442B90D010 | sudo apt-key add - | |
sudo apt-get update | |
sudo apt-get -yt jessie-backports install libssl-dev openssl | |
# Install setuptools, pip, mitmproxy: | |
sudo apt-get install python-dev python-setuptools libffi-dev libxml2-dev libxslt1-dev libjpeg8-dev zlib1g-dev | |
sudo easy_install -U setuptools | |
sudo easy_install pip | |
sudo pip install mitmproxy |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment