commit 4b00cbe75e5a098461b91592735b2f425f1a1ff7 Author: anadahz anadahz@users.noreply.github.com Date: Sun May 8 12:15:12 2016 +0000
Fix markdown syntax, correct setcap (non-symlink) file (#495) --- README.rst | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/README.rst b/README.rst index ef9e0ba..5227cc6 100644 --- a/README.rst +++ b/README.rst @@ -303,7 +303,7 @@ Setting capabilities on your virtualenv python binary If your distribution supports capabilities you can avoid needing to run OONI as root::
- setcap cap_net_admin,cap_net_raw+eip /path/to/your/virtualenv's/python + setcap cap_net_admin,cap_net_raw+eip /path/to/your/virtualenv's/python2
Reporting bugs @@ -353,10 +353,13 @@ On Debian based systems a development environment can be setup as follows: (prer git clone https://github.com/TheTorProject/ooni-probe cd ooni-probe virtualenv venv + `virtualenv venv` will create a folder in the current directory which will contain the Python executable files, and a copy of the pip library which you can use to install other packages. To begin using the virtual environment, it needs to be activated: + + source venv/bin/activate pip install -r requirements.txt pip install -r requirements-dev.txt
tor-commits@lists.torproject.org