aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorMaximilian Hils <git@maximilianhils.com>2017-08-15 14:19:51 +0200
committerMaximilian Hils <git@maximilianhils.com>2017-08-15 14:19:51 +0200
commitad42e9ce967c6f6c2595e8acca250f17d07b63e0 (patch)
treefaaff725bd44ad281b6ef028e3f5a7d6dd8736e2 /docs
parent96c8c75ce6b8c656e5f03312479c32082d5a89b7 (diff)
downloadmitmproxy-ad42e9ce967c6f6c2595e8acca250f17d07b63e0.tar.gz
mitmproxy-ad42e9ce967c6f6c2595e8acca250f17d07b63e0.tar.bz2
mitmproxy-ad42e9ce967c6f6c2595e8acca250f17d07b63e0.zip
docs: simplify install instructions
We only need pip3 now on all OSes as cryptography now ships wheels on Linux :tada:. Also remove `pip3 install --user` recommendation because that won't end up on $PATH.
Diffstat (limited to 'docs')
-rw-r--r--docs/install.rst10
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/install.rst b/docs/install.rst
index 7753dc44..6f166c8a 100644
--- a/docs/install.rst
+++ b/docs/install.rst
@@ -85,8 +85,8 @@ libraries. This was tested on a fully patched installation of Ubuntu 16.04.
.. code:: bash
- sudo apt-get install python3-dev python3-pip libffi-dev libssl-dev
- sudo pip3 install mitmproxy # or pip3 install --user mitmproxy
+ sudo apt-get install python3-pip
+ sudo pip3 install mitmproxy
On older Ubuntu versions, e.g., **12.04** and **14.04**, you may need to install
a newer version of Python. mitmproxy requires Python 3.5 or higher. Please take
@@ -104,8 +104,8 @@ libraries. This was tested on a fully patched installation of Fedora 24.
.. code:: bash
- sudo dnf install make gcc redhat-rpm-config python3-devel python3-pip libffi-devel openssl-devel
- sudo pip3 install mitmproxy # or pip3 install --user mitmproxy
+ sudo dnf install python3-pip
+ sudo pip3 install mitmproxy
Make sure to have an up-to-date version of pip by running ``pip3 install -U pip``.
@@ -121,7 +121,7 @@ You can check you Python version by running ``python3 --version``.
.. code:: bash
- sudo zypper install python3-pip python3-devel libffi-devel openssl-devel gcc-c++
+ sudo zypper install python3-pip
sudo pip3 install mitmproxy