commit f72bfc1167996be42b8b49af6b4c81382a161465 Author: Arturo Filastò hellais@gmail.com Date: Tue Nov 27 15:56:35 2012 +0100
Add install instructions for latest version of Tor --- README.md | 15 ++++++++++++++- 1 files changed, 14 insertions(+), 1 deletions(-)
diff --git a/README.md b/README.md index 4c3c916..43bb6b0 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ Basic requirements:
On debian based systems these can be installed with:
- sudo apt-get install git-core python python-pip python-dev build-essential tor + sudo apt-get install git-core python python-pip python-dev build-essential
The python dependencies required for running ooniprobe are:
@@ -38,6 +38,19 @@ The python dependencies required for running ooniprobe are: * BeautifulSoup: http://www.crummy.com/software/BeautifulSoup/ * txtorcon: https://github.com/meejah/txtorcon
+## Install Tor + +To get the latest version of Tor you should do the following (from: https://www.torproject.org/docs/debian): + + # put in here the value of lsb_release -c (ex. oneirc for ubuntu 11.10 or squeeze for debian 6.0) + export DISTRIBUTION="squeeze" + echo "deb http://deb.torproject.org/torproject.org $DISTRIBUTION main" >> /etc/apt/sources.list + gpg --keyserver keys.gnupg.net --recv 886DDD89 + gpg --export A3C4F0F979CAA22CDBA8F512EE8CBC9E886DDD89 | sudo apt-key add - + apt-get update + apt-get install tor + + ## Configurating a virtual environment
You are highly recommended to install python packages from inside of a virtual
tor-commits@lists.torproject.org