Skip to content

Instantly share code, notes, and snippets.

@LincolnBryant
Created September 10, 2014 05:56
Show Gist options
  • Save LincolnBryant/7161bf402c8103acd0b6 to your computer and use it in GitHub Desktop.
Save LincolnBryant/7161bf402c8103acd0b6 to your computer and use it in GitHub Desktop.
fast & loose build reqs for Tahoe on CentOS / Scientific Linux 6.5

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