多环境coremltools安装

multiple environment coremltools installation

正在尝试安装 coremltools。我使用 pip 安装,但那不是最新版本,我有 运行 一个错误,该错误已解决 4 天,因此我必须从源代码构建。我在 Mac 虚拟桌面(windows 用户)上,我尝试了 cmake,但由于有多个 pythons 它一直尝试安装到 python 3.7 当我python 2.7.10 需要它来安装。 github 建议这样做:

   cmake . -DPYTHON=$(which python) -DPYTHON_CONFIG=$(which python-config)

.. 然而,作为一个不使用 cmake 进行软件包安装的人,我不确定语法是否正确,有人可以给我一个示例语句吗,我真的很感激。谢谢

无需手动构建即可安装:

pip install https://github.com/apple/coremltools/archive/master.zip

您可以用任何分支或标签名称替换 "master"。

编辑:要更新现有安装,请添加 -U 标志。或卸载以前的安装。