==================================================================================
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がシステムにインストールされています
サポートされている任意のバージョンで仮想環境を作成してから、turicreateをインストールできます。 Ubuntu 20.04およびUbuntu 16.04では問題なく動作し、python3.8サポートが追加されていない限り、turicreateを使用するための優れた代替手段です。
サポートされているpythonバージョンのいずれかをインストールし、そのインストールパスをメモします(インストールフォルダーは通常/ usr/bin /ですが、異なる場合があります)pip install virtualenv
でvirtualenvをインストールします。プロジェクトを作成し、virtualenv -p /path/to/python/installation venv
を使用してプロジェクトフォルダ内に仮想環境を作成します。
私はそれをpython3.6で作成したので、私にとってはvirtualenv -p /usr/bin/python3.6 venv
でした。次に、source venv/bin/activate
と入力して、新しい仮想環境をアクティブにします。 python version with python --version
を確認してください。
次に、turicreateのインストールに進みます。
作業が完了したら、deactivate
コマンドを使用して仮想環境を非アクティブ化します