NLTK Lookup Error

前端 未结 8 1728
感动是毒
感动是毒 2020-12-14 00:53

While running a Python script using NLTK I got this:

Traceback (most recent call last):
  File \"cpicklesave.py\", line 56, in 
    pos = nltk.         


        
8条回答
  •  我在风中等你
    2020-12-14 01:37

    Use

    >>> nltk.download()
    

    to install the missing module (the Perceptron Tagger).

    (check also the answers to Failed loading english.pickle with nltk.data.load)

提交回复
热议问题