首先,我使用Google colab进行工作,
我已经用以下命令下载了英语的nltk停用词:
nltk.download('stopwords')
下载成功
[nltk_data] Downloading package stopwords to /root/nltk_data...
但是当我运行
stop = stopwords.words('English')
时我正在获取
OSError: No such file or directory: '/root/nltk_data/corpora/stopwords/English'
最佳答案
TL; DREnglish
应为小写=)
另请:https://colab.research.google.com/drive/1tNt0Ifom-h4OnFBBZpLndYCEPDU598jE
在代码中
# Downloads the data.
import nltk
nltk.download('stopwords')
# Using the stopwords.
from nltk.corpus import stopwords
# Initialize the stopwords
stoplist = stopwords.words('english')
关于python - 使用colab时没有此类文件或目录 'nltk_data/corpora/stopwords/English',我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/53772907/