~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to doc/setup/install_proc.txt

  • Committer: dcoles
  • Date: 2008-03-10 06:11:51 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:682
Natural Language Tool Kit (nltk) for student code

setup.py: copy '/usr/share/nltk' into jail
d/s/install_proc.txt: How to download and install NLTK
d/dependencies.txt: Added NLTK as a student code dependancy

Show diffs side-by-side

added added

removed removed

Lines of Context:
53
53
#
54
54
# See trunk/doc/dependencies.txt
55
55
 
 
56
# CJSON
56
57
wget 'http://pypi.python.org/packages/source/p/python-cjson/python-cjson-1.0.5.tar.gz'
57
58
tar -zxvf python-cjson-1.0.5.tar.gz
58
59
 
61
62
sudo ./setup.py install
62
63
cd ..
63
64
 
 
65
# NLTK for student code
 
66
wget 'http://prdownloads.sourceforge.net/nltk/nltk-0.9.2.tar.gz'
 
67
tar -xzvf nltk-0.9.2.tar.gz
 
68
wget 'http://prdownloads.sourceforge.net/nltk/nltk-data-0.9.2.zip'
 
69
unzip nltk-data-0.9.2.zip
 
70
 
 
71
cd nltk-0.9.2
 
72
sudo python setup.py install
 
73
cd ..
 
74
sudo mkdir /usr/share/nltk
 
75
sudo mv data /usr/share/nltk/
 
76
sudo chmod -R g+r /usr/share/nltk/data
 
77
 
64
78
# Documentation packages needed for tutorial system: Docutils, Epydoc
65
79
# wget each of these, untar them, and then do: sudo python ./setup.py install
66
80