Skip to content

Instantly share code, notes, and snippets.

@LincolnBryant
Created September 10, 2014 05:55
Show Gist options
  • Save LincolnBryant/e178873474dd2412d7d5 to your computer and use it in GitHub Desktop.
Save LincolnBryant/e178873474dd2412d7d5 to your computer and use it in GitHub Desktop.

Tahoe-LAFS Build for CentOS 6.5

requirements

yum install openssl-devel libffi-devel

creating virtualenv

virtualenv tahoe
git clone https://github.com/tahoe-lafs/tahoe-lafs
source tahoe/bin/activate

create requirements.txt

cat << EOF > requirements.txt;
Nevow==0.11.1
Twisted==14.0.0
cffi==0.8.2
cryptography==0.4
foolscap==0.6.4
mock==1.0.1
pyOpenSSL==0.14
pyasn1==0.1.7
pycparser==2.10
pycrypto==2.6.1
pycryptopp==0.6.0.1206569328141510525648634803928199668821045408958
simplejson==3.5.3
six==1.7.3
zbase32==1.1.5
zfec==1.4.24
zope.interface==4.1.1
service-identity
EOF

install requirements

while read line; do easy_install $line; done < requirements.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment