aboutsummaryrefslogtreecommitdiffstats
path: root/docs/install.rst
diff options
context:
space:
mode:
authorThomas Kriechbaumer <Kriechi@users.noreply.github.com>2017-02-15 14:08:36 +0100
committerGitHub <noreply@github.com>2017-02-15 14:08:36 +0100
commit80113a9d6ec63d665f77db16aeb8341c41319bee (patch)
treed5a55739228520b3a9891d66c3010d8eca065f35 /docs/install.rst
parent0d9c7ce50c4b87efbd2a11785be467dd19048f41 (diff)
downloadmitmproxy-80113a9d6ec63d665f77db16aeb8341c41319bee.tar.gz
mitmproxy-80113a9d6ec63d665f77db16aeb8341c41319bee.tar.bz2
mitmproxy-80113a9d6ec63d665f77db16aeb8341c41319bee.zip
remove zlib1g dependency from install instructions
Diffstat (limited to 'docs/install.rst')
-rw-r--r--docs/install.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/install.rst b/docs/install.rst
index c90eaf9f..cf93cc58 100644
--- a/docs/install.rst
+++ b/docs/install.rst
@@ -85,7 +85,7 @@ libraries. This was tested on a fully patched installation of Ubuntu 16.04.
.. code:: bash
- sudo apt-get install python3-pip python3-dev libffi-dev libssl-dev zlib1g-dev
+ sudo apt-get install python3-dev python3-pip libffi-dev libssl-dev
sudo pip3 install mitmproxy # or pip3 install --user mitmproxy
On older Ubuntu versions, e.g., **12.04** and **14.04**, you may need to install
@@ -104,7 +104,7 @@ libraries. This was tested on a fully patched installation of Fedora 24.
.. code:: bash
- sudo dnf install make gcc redhat-rpm-config python3-pip python3-devel libffi-devel openssl-devel zlib-devel
+ 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
Make sure to have an up-to-date version of pip by running ``pip3 install -U pip``.