diff options
author | Thomas Kriechbaumer <thomas@kriechbaumer.name> | 2018-03-31 17:25:21 +0200 |
---|---|---|
committer | Thomas Kriechbaumer <thomas@kriechbaumer.name> | 2018-03-31 18:46:32 +0200 |
commit | 46f8901b8cf46769f62b7268117d2e60fc785c00 (patch) | |
tree | 154a2669f1dd13c2632f6387fee1d8931fe4c735 /docs/src | |
parent | 3c52ed6ee1948a1c4b0fa064fe7313bdfadb8950 (diff) | |
download | mitmproxy-46f8901b8cf46769f62b7268117d2e60fc785c00.tar.gz mitmproxy-46f8901b8cf46769f62b7268117d2e60fc785c00.tar.bz2 mitmproxy-46f8901b8cf46769f62b7268117d2e60fc785c00.zip |
Python 3.5 is dead -- long live Python 3.6!
fixes #2266
Diffstat (limited to 'docs/src')
-rw-r--r-- | docs/src/content/overview-installation.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/src/content/overview-installation.md b/docs/src/content/overview-installation.md index 00941cb8..d69805db 100644 --- a/docs/src/content/overview-installation.md +++ b/docs/src/content/overview-installation.md @@ -73,14 +73,14 @@ security considerations apply as for our binary packages. ## Installation on Linux via pip3 -Please make sure to install Python 3.5 (or higher) and pip3 for your +Please make sure to install Python 3.6 (or higher) and pip3 for your distribution. If your distribution does not provide a suitable Python version, you can use [pyenv](https://github.com/yyuu/pyenv) to get a recent Python environment. {{< highlight bash >}} -sudo apt install python3-pip # Debian 8 or higher, Ubuntu 16.04 or higher -sudo dnf install python3-pip # Fedora 24 or higher +sudo apt install python3-pip # Debian 10 or higher, Ubuntu 17.10 or higher +sudo dnf install python3-pip # Fedora 26 or higher sudo pacman -S python-pip # Arch Linux {{< / highlight >}} @@ -98,7 +98,7 @@ sudo pip3 install mitmproxy ## Installation on Windows via pip3 -First, install the latest version of Python 3.5 or higher from the +First, install the latest version of Python 3.6 or higher from the [Python website](https://www.python.org/downloads/windows/). During installation, make sure to select Add Python to PATH. There are no other dependencies on Windows. |