我正在尝试使用 Python nltk 对字符串中的单词进行标记,我需要导入以下模块:
from nltk import WhitespaceTokenizer
from nltk import WordPunctTokenizer
但它无法导入这些模块:
>>ImportError: No module named nltk
我可以import nltk
并且还dir(nltk)
向我展示了两个模块:WhitespaceTokenizer、WordPunctTokenizer
有没有人遇到过这个问题?我正在使用 Python 2.6.1