Installation
Tangled to ‘~/Brewfile’ for Homebrew:
source ~/.venv/bin/activate
# pip install tensorflow
pip install tensorflow-metal
pip install tensorboard
N.B. TensorFlow may require older Python.
- Test
import tensorflow as tf
gpus = len(tf.config.list_physical_devices ('GPU'))
print(f"TensorFlow v{tf.__version__} installed.")
print(f"{gpus} GPU(s) available.")
TensorFlow v2.16.2 installed.
1 GPU(s) available.