This repository provides a prebuilt TensorFlow Windows ARM64 wheel for Python 3.13.
-
Download the latest Windows ARM64 installer for Python 3.13 from the official Python website:
-
Run the installer.
- Enable "Add Python to PATH".
- Select Install Now.
-
Verify the installation:
python --version
pip --versionDownload the TensorFlow wheel from releases.
Install it without dependencies:
pip install tensorflow-2.22.0.dev0+selfbuilt-cp313-cp313-win_arm64.whl --no-depspip install absl-py astunparse flatbuffers gast google_pasta keras-nightly libclang ml_dtypes numpy opt_einsum packaging protobuf requests setuptools six termcolor typing_extensions wraptInstall the prebuilt binary:
pip install --only-binary=:all: h5pyDownload the grpcio 1.84.0 Windows ARM64 Wheel from Gleb's repository:
Then install it:
pip install grpcio-1.84.0.dev0-cp313-cp313-win_arm64.whlimport tensorflow as tf
print(tf.__version__)
print(tf.config.list_physical_devices())Example output:
2.22.0.dev0+selfbuilt
[PhysicalDevice(name='/physical_device:CPU:0', device_type='CPU')]
- This wheel is built specifically for Windows ARM64 and Python 3.13 ARM64 is required.
- The TensorFlow wheel should be installed before installing the dependencies listed above.