找不到 coremltools==0.8 的匹配分布(来自 turicreate)
No matching distribution found for coremltools==0.8 (from turicreate)
我正在尝试在旧的 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
所以我尝试安装"basic"版本(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 以及如何安装?
我在 Mac 10.11 (El Capitan) 上遇到了同样的 coremltools==0.8 错误 运行 pip install turicreate
。我能够 解决它 自欺欺人地认为我已经通过从源代码编译和安装 coremltools 解决了它。有关这些步骤,请参阅 。
但当时 turicreate 并没有真正发挥作用。 运行 import turicreate
in python 给出了有关链接到为 10.12 构建的库的错误(来自 turicreate 的 cypython 文件)。
我什至尝试从源代码构建 turicreate,但是存在大量依赖项。最后我回过神来,只是升级到 Mac OSX >= 10.12,这是一条更容易的路线。
我正在尝试在旧的 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
所以我尝试安装"basic"版本(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 以及如何安装?
我在 Mac 10.11 (El Capitan) 上遇到了同样的 coremltools==0.8 错误 运行 pip install turicreate
。我能够 解决它 自欺欺人地认为我已经通过从源代码编译和安装 coremltools 解决了它。有关这些步骤,请参阅 。
但当时 turicreate 并没有真正发挥作用。 运行 import turicreate
in python 给出了有关链接到为 10.12 构建的库的错误(来自 turicreate 的 cypython 文件)。
我什至尝试从源代码构建 turicreate,但是存在大量依赖项。最后我回过神来,只是升级到 Mac OSX >= 10.12,这是一条更容易的路线。