如何为Anaconda安装stop-words
,我将其用于带有Anaconda-Navigator的jupyter笔记本。
我可以使用pip3 install...
安装,但我需要安装conda install ...
,以便我可以使用该软件包。
在一天结束时,我希望能够在jupyter中做from stop_words import get_stop_words
。
我试过了:
conda install stop-words
解决环境:失败
PackagesNotFoundError:以下软件包不可用 当前渠道:
- 停止字
当前频道:
- https://repo.continuum.io/pkgs/main/osx-64
- https://repo.continuum.io/pkgs/main/noarch
- https://repo.continuum.io/pkgs/free/osx-64
- https://repo.continuum.io/pkgs/free/noarch
- https://repo.continuum.io/pkgs/r/osx-64
- https://repo.continuum.io/pkgs/r/noarch
- https://repo.continuum.io/pkgs/pro/osx-64
- https://repo.continuum.io/pkgs/pro/noarch
此处还有“Anaconda”说明,https://anaconda.org/pypi/stop-words。
To install this package with pip, first run:
anaconda login
and then:
pip install -i https://pypi.anaconda.org/pypi/simple stop-words
Or:
TOKEN=$(anaconda auth --create --name download-token)
and then:
pip install -i https://pypi.anaconda.org/t/$TOKEN/pypi/simple stop-words
但这是用pip安装的,不是用conda安装的。因此,在执行此操作后,我仍然无法访问jupyter。
答案 0 :(得分:5)
我的解决方案是使用不同的包。
deposit()
而不是。
import nltk
from nltk.corpus import stopwords
nltk.download('stopwords')
stopwords = stopwords.words('english')
答案 1 :(得分:1)
解决方案在nltk documentation:
中给出如果您在脚本中访问nltk.download时遇到问题,可以通过命令行界面安装它
python -m nltk.downloader all
。
之后,nltk.download命令将像魅力一样工作。
答案 2 :(得分:1)
Pip
安装程序也适用于conda
,只需尝试
pip install stop-words
答案 3 :(得分:0)
您应该只运行以下命令:
pipX安装停用词
其中X对应于随Anaconda安装的python版本
答案 4 :(得分:0)
在安装NLTK时,nltk的目录必须为C:\ nltk_data。