1、tqdm 安装 pip install tqdm
使用时可能会报缺少stopwords、punkt错,原因是缺失相应文件,下载即可:
import nltk nltk.download('stopwords')
nltk.download('punkt')