0

我正在尝试在旧 Mac(El Capitan)上安装 turicreate beta 2(版本 5.0b2),但终端会抛出这个: Could not find a version that satisfies the requirement turicreate==5.0b2 (from versions: 4.1, 4.1.1, 4.2) No matching distribution found for turicreate==5.0b2

当我输入这个: sudo python3.6 -m pip install turicreate==5.0b2 或这个:pip3 install turicreate==5.0b2

所以我尝试安装“基本”版本(sudo python3.6 -m pip install turicreate, python3.6 -m pip install turicreate, pip3 install -U turicreate, pip3 install turicreate),但这一次,错误是:

Could not find a version that satisfies the requirement coremltools==0.8 (from turicreate) (from versions: ) No matching distribution found for coremltools==0.8 (from turicreate)

有谁知道是否可以在 El Capitan 上安装 turicreate 以及如何安装?

4

1 回答 1

0

pip install turicreate我在 Mac 10.11 (El Capitan) 上运行了同样的 coremltools==0.8 错误。我能够解决它,让自己误以为我已经通过从源代码编译和安装 coremltools 解决了它。有关这些步骤,请参阅https://stackoverflow.com/a/55327526/1014857

但是 turicreate 在那个时候实际上并没有起作用。在 python 中运行import turicreate给出了一个关于链接到为 10.12 构建的库的错误(来自 turicreate 的 cypython 文件)。

我什至尝试从源代码构建 turicreate,但存在密集的依赖关系。最终我意识到并升级到 Mac OSX >= 10.12,这是一条更容易的途径。

于 2019-03-24T19:48:14.003 回答