I want to import wordnet dictionary but when i import Dictionary form wordnet i see this error :
for l in open(WNSEARCHDIR+'/lexnames').readlines():
IOError: [Errno 2] No such file or directory: 'C:\\Program Files\\WordNet\\2.0\\dict/lexnames'
I install wordnet2.1 in this directory but i cant import
please help me to solve this problem
import nltk
from nltk import *
from nltk.corpus import wordnet
from wordnet import Dictionary
print '-----------------------------------------'
print Dictionary.length
The following works for me:
Now I’ve a
WordNetCorpusReadercalledwn. I don’t know why you’re looking for aDictionaryclass, since there’s no such class listed in the docs. The NLTK book, in section 2.5, explains what you can do with thenltk.corpus.wordnetmodule.