PyCharm 中调用 NLTK 包时报错:如何解决 `AttributeError: module 'nltk' has no attribute 'word_tokenize'`?
pycharm调用nltk包时报错
在pycharm中安装nltk包后,调用其功能时遇到以下报错:
attributeerror: module 'nltk' has no attribute 'word_tokenize'
解决步骤
根据提供的文档,nltk的最新版本已弃用word_tokenize方法,建议使用nltk.tokenize.word_tokenize函数替代。将以下代码中调用的word_tokenize方法替换为nltk.tokenize.word_tokenize即可解决问题:
print(nltk.tokenize.word_tokenize(for_test))
以上就是PyCharm 中调用 NLTK 包时报错:如何解决 `AttributeError: module 'nltk' has no attribute 'word_tokenize'`?的详细内容,更多请关注www.sxiaw.com其它相关文章!