outten45 (owner)

Revisions

  • 8332c0 outten4... Sun Mar 15 12:48:23 -0700 2009
gist: 79518 Download_button fork
public
Public Clone URL: git://gist.github.com/79518.git
Embed All Files: show embed
snippet.sh #
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# download httplib2 and install
wget http://httplib2.googlecode.com/files/httplib2-0.4.0.tar.gz
tar xvzf httplib2-0.4.0.tar.gz
cd httplib2-0.4.0
sudo python setup.py install
 
cd ..
 
# download simplejson and install
wget http://pypi.python.org/packages/source/s/simplejson/simplejson-2.0.9.tar.gz#md5=af5e67a39ca3408563411d357e6d5e47
tar xvzf simplejson-2.0.9.tar.gz
cd simplejson-2.0.9
sudo python setup.py install
 
cd ..
 
# download CouchDB and install
wget http://pypi.python.org/packages/source/C/CouchDB/CouchDB-0.5.tar.gz#md5=ec9ccb11280af4d5aec4e6a3ffc87cb0
tar xvzf CouchDB-0.5.tar.gz
cd CouchDB-0.5
sudo python setup.py install