pip install nlp找不到匹配的发行版

时间:2017-03-02 18:43:42

标签: python spacy

我是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

我搜索了它但直到现在才找到任何解决方案。

2 个答案:

答案 0 :(得分:1)

您需要安装spacy模块。

pip install spacy

然后你可以使用它的nlp:

import spacy
nlp = spacy.load('en')
doc = nlp(u"Apples and oranges are similar. Boots and hippos aren't.")

答案 1 :(得分:1)

你需要使用它:

import spacy
nlp = spacy.load('en')