3
   ==================================================================================
        TURICREATE ERROR

        If you see this message, pip install did not find an available binary package
        for your system.

        Supported Platforms:
            * macOS 10.12+ x86_64.
            * Linux x86_64 (including WSL on Windows 10).

        Support Python Versions:
            * 2.7
            * 3.5
            * 3.6
            * 3.7


        Another possible cause of this error is an outdated pip version. Try:
            `pip install -U pip`

        ==================================================================================

这是我输入命令“pip install turicreate”后收到的消息。

我正在使用 ubuntu 20.4 并在我的系统上安装了 python 3.8.2

4

2 回答 2

4

Turicreate 还不支持 Python 3.8。您必须使用较早的 python 版本(例如 3.7)才能使 turicreate 工作。

于 2020-06-19T14:34:42.900 回答
0

您可以使用任何受支持的版本创建虚拟环境,然后安装 turicreate。它在 Ubuntu 20.04 和 Ubuntu 16.04 上运行良好,并且是使用 turicreate 的一个很好的替代方案,只要不添加 python3.8 支持。

安装任何支持的 python 版本并记下它的安装路径(安装文件夹通常是 /usr/bin/ 但它可能会有所不同)。使用pip install virtualenv. 导航到您的项目,然后在项目文件夹中使用virtualenv -p /path/to/python/installation venv.

我是用 python3.6 创建的,所以对我来说是virtualenv -p /usr/bin/python3.6 venv. 然后通过输入激活新的虚拟环境source venv/bin/activate。使用 . 检查 python 版本python --version

然后继续安装 turicreate。

完成工作后,使用deactivate命令停用虚拟环境

于 2020-07-11T03:56:07.237 回答