web-dev-qa-db-fra.com

Installer Nltk 3.0 - quel dossier

Je viens d'installer python 3.4.0 sur Ubuntu 13.10, et maintenant je veux installer nltk-3.0a3.tar.gz

Cependant, je ne sais pas dans quel dossier je dois extraire cela. Je suis encore nouveau sur linux et je ne sais pas où trouver mon python 3.4 installation!

Toute aide appréciée!

1
Darren Haynes

J'ai trouvé ces étapes en ligne et elles ont fait l'affaire:

$ Sudo apt-get install python3-pip
$ Sudo pip3 install pyyaml
$ wget http://www.nltk.org/nltk3-alpha/nltk-3.0a3.tar.gz
$ tar -xzvf nltk-3.0a3.tar.gz
$ cd nltk-3.0a3/
$ Sudo python3 setup.py install
$ python3
>>> import nltk
>>> from nltk.corpus import brown
>>> print(brown.sents()[0])
['The', 'Fulton', 'County', 'Grand', 'Jury', 'said', 'Friday', 'an', 'investigation', 'of', "Atlanta's", 'recent', 'primary', 'election', 'produced', '``', 'no', 'evidence',
 "''", 'that', 'any', 'irregularities', 'took', 'place', '.']
2
Darren Haynes