diff options
author | Maximilian Hils <git@maximilianhils.com> | 2017-03-08 20:06:35 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-08 20:06:35 +0100 |
commit | 44c3c3ed860e4805405106ddb1b083d68ff320ed (patch) | |
tree | f8fceb3ae260804ed60548e0c6207af3b50a4419 | |
parent | 7bec0c73cf7f18e2c06ce33699d7c6a56060b72e (diff) | |
parent | ca819fb9239f22c8ed21a2f93c531bc8ff225b44 (diff) | |
download | mitmproxy-44c3c3ed860e4805405106ddb1b083d68ff320ed.tar.gz mitmproxy-44c3c3ed860e4805405106ddb1b083d68ff320ed.tar.bz2 mitmproxy-44c3c3ed860e4805405106ddb1b083d68ff320ed.zip |
Merge pull request #2124 from mitmproxy/opensuse-docs
Add install docs for openSUSE
-rw-r--r-- | docs/install.rst | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/docs/install.rst b/docs/install.rst index cf93cc58..b37d9c91 100644 --- a/docs/install.rst +++ b/docs/install.rst @@ -110,6 +110,20 @@ libraries. This was tested on a fully patched installation of Fedora 24. Make sure to have an up-to-date version of pip by running ``pip3 install -U pip``. +.. _install-source-opensuse: + +Installation from Source on openSUSE +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +This was tested on a fully patched installation of openSUSE Tumbleweed. +Please note that openSUSE Leap 42.2 only comes with Python 3.4.x, whereas mitmproxy requires Python 3.5 or above. +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 pip3 install mitmproxy + .. _install-source-windows: |