Problemas ao instalar o python-nltk

2

Eu tentei o seguinte: 1)

   sudo apt-get install python-nltk
   sudo apt-get install python-tk
   sudo apt-get install python-numpy
   sudo apt-get install python-matplotlib

Os últimos 3 são apenas para evitar problemas de dependência mais tarde.

2) Eu também tentei construir o nltk a partir da fonte.

Nenhuma das duas abordagens ao longo do trabalho. Este é o erro que recebo:

Python 2.7.2 (default, Nov  1 2011, 23:57:57) 
[GCC 4.6.1] on linux3
Type "help", "copyright", "credits" or "license" for more information.
>>> import nltk
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ImportError: No module named nltk
    
por Arnab Datta 15.02.2012 / 17:05

1 resposta

3
  1. Instale setuptools
  2. sudo easy_install pip
  3. sudo pip install -U numpy
  4. sudo pip install -U pyyaml nltk
  5. execute python e digite import nltk
por 11.01.2013 / 11:37

Tags