安装特定版本的Numpy进行重复数据删除错误

时间:2018-07-13 08:52:31

标签: python-dedupe

我是python的新手,已经遇到了一些问题:

要清除一些数据,我想尝试dedupe / csvdedupe

它需要numpy才能运行,所以我安装了它(工作正常)

<ul class="heroes">
  <li *ngFor="let hero of heroes"
    [class.selected]="hero === selectedHero"
    (click)="onSelect(hero)">
    <span class="badge">{{hero.id}}</span> {{hero.name}}
  </li>
</ul>

但是当我想安装它

pip install numpy
pip install dedupe

所以我卸载了numpy并安装了特定版本

Could not find a version that satisfies the requirement numpy==1.13.1 
(from versions: 1.14.5, 1.15.0rc2) 
No matching distribution found for numpy==1.13.1

然后我将其作为错误结果:

pip uninstall numpy
pip install "numpy==1.13.1"

0 个答案:

没有答案