pip install nlp 没有找到匹配的分布
pip install nlp no matching distribution found
我是 Ubuntu 和 Python 的新手,正在为 Python 练习 Spacy 库。我正在关注使用 nlp
模块的 Spacy 库的 this tutorial。因此,我必须安装它,但是当我使用以下命令时
pip install nlp
然后它给出以下结果:
Collecting nlp
Could not find a version that satisfies the requirement nlp (from versions: )
No matching distribution found for nlp
我搜索了它,但直到现在没有找到任何解决方案。
这是您需要安装的spacy模块。
pip install spacy
然后你可以使用它的nlp:
import spacy
nlp = spacy.load('en')
doc = nlp(u"Apples and oranges are similar. Boots and hippos aren't.")
你需要使用这个:
import spacy
nlp = spacy.load('en')
我是 Ubuntu 和 Python 的新手,正在为 Python 练习 Spacy 库。我正在关注使用 nlp
模块的 Spacy 库的 this tutorial。因此,我必须安装它,但是当我使用以下命令时
pip install nlp
然后它给出以下结果:
Collecting nlp
Could not find a version that satisfies the requirement nlp (from versions: )
No matching distribution found for nlp
我搜索了它,但直到现在没有找到任何解决方案。
这是您需要安装的spacy模块。
pip install spacy
然后你可以使用它的nlp:
import spacy
nlp = spacy.load('en')
doc = nlp(u"Apples and oranges are similar. Boots and hippos aren't.")
你需要使用这个:
import spacy
nlp = spacy.load('en')