2013-04-25 65 views
1

我在python 2.7.3上使用pip install安装了nltk。当我运行这些命令使用Wordnet API与python 2.7.3时出现属性错误

import nltk 
from nltk.corpus import wordnet as wn 
dog = wn.sysnet('dog.n.01') 

我碰到下面的错误..

Traceback (most recent call last): 
File "<stdin>", line 1, in <module> 
File "C:\Python27\lib\site-packages\nltk\corpus\util.py", line 71, in __getattr__ 
return getattr(self, attr) 
AttributeError: 'WordNetCorpusReader' object has no attribute 'sysnet' 

我应该如何纠正?

回答