transformersのインストール

Macにてインストール。

pip install transformers

以下の理由で失敗する場合、rustをインストール、またはupdateする。

ERROR: Could not build wheels for tokenizers, which is required to install pyproject.toml-based projects

rustをインストール。

brew install rustup-init
rustup-init # 1を選択
exec $SHELL -l # 起動中のシェルに反映
rustup update

改めてインストール。

pip install transformers