正文Resource wordnet not found. Please use the NLTK Downloader to obtain the resource:IP云V管理员/2022-12-01/21 阅读 12/01提示:扫一扫查出行【扫一扫了解最新限行尾号】复制提示 第一次使用nltk的时候,出现了这样的错误: from nltk.stem.wordnet import WordNetLemmatizer lemmatizer = WordNetLemmatizer() print(lemmatizer.lemmatize('computer')) 原来是需要先在本地下载wordnet 故,在console界面按照提示输入: >>> import nltk >>> nltk.download('wordnet') 然后就可以了