aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMaximilian Hils <git@maximilianhils.com>2017-01-10 15:14:42 +0100
committerGitHub <noreply@github.com>2017-01-10 15:14:42 +0100
commit6f9422dfb998a1b6c8ba49a0076942f201f54e07 (patch)
tree2ad0a943b4b0d1c52948bbb26fd1236cd38a070f
parent5d0f7e5c41f3c553b993162abaef32c44ac22781 (diff)
parent38fd88b3d1694f730d06d2a7acb58baadaf8df78 (diff)
downloadmitmproxy-6f9422dfb998a1b6c8ba49a0076942f201f54e07.tar.gz
mitmproxy-6f9422dfb998a1b6c8ba49a0076942f201f54e07.tar.bz2
mitmproxy-6f9422dfb998a1b6c8ba49a0076942f201f54e07.zip
Merge pull request #1918 from s4chin/update-hacking-instructions
Update instructions in README
-rw-r--r--README.rst5
1 files changed, 3 insertions, 2 deletions
diff --git a/README.rst b/README.rst
index f30f0fe1..1725708f 100644
--- a/README.rst
+++ b/README.rst
@@ -58,13 +58,14 @@ virtualenv_ installed (you can find installation instructions for virtualenv
.. code-block:: text
+ sudo apt-get install python3-pip python3-dev libffi-dev libssl-dev libtiff5-dev libjpeg8-dev zlib1g-dev libwebp-dev
git clone https://github.com/mitmproxy/mitmproxy.git
cd mitmproxy
./dev.sh # powershell .\dev.ps1 on Windows
The *dev* script will create a virtualenv environment in a directory called
-"venv", and install all mandatory and optional dependencies into it. The
+"venv3.5", and install all mandatory and optional dependencies into it. The
primary mitmproxy components - mitmproxy and pathod - are installed as
"editable", so any changes to the source in the repository will be reflected
live in the virtualenv.
@@ -74,7 +75,7 @@ mitmproxy test suite:
.. code-block:: text
- . venv/bin/activate # venv\Scripts\activate on Windows
+ . venv3.5/bin/activate # venv\Scripts\activate on Windows
py.test
Note that the main executables for the project - ``mitmdump``, ``mitmproxy``,