M1 MacにTensorFlow2.5をインストール(miniforge)

【環境】
PC: MacBook Pro (13-inch, M1, 2020)
OS: macOS Big Sur (11.5.1)

Pythonの仮想環境をminiforgeで作成

% conda create -n tf25 python=3.8

作成した仮想環境を起動

% conda activate tf25

tensorflowの依存ファイルをインストール

% conda install -c apple tensorflow-deps

macOS用のtensorflowをインストール

% python -m pip install tensorflow-macos

tensorflowのmetal pluginをインストール

% python -m pip install tensorflow-metal

インタープリタ(対話モード)

% python
Python 3.8.10 | packaged by conda-forge | (default, May 11 2021, 06:27:18)
[Clang 11.1.0 ] on darwin
Type "help", "copyright", "credits" or "license" for more information.

TensorFlowをインポート

>>> import tensorflow as tf
Init Plugin
Init Graph Optimizer
Init Kernel

tensorflowのバージョン確認

>>> tf.__version__
'2.5.0'


この記事が気に入ったらサポートをしてみませんか?