Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 

Repository files navigation

TensorFlow Windows ARM64 (Python 3.13)

This repository provides a prebuilt TensorFlow Windows ARM64 wheel for Python 3.13.

Installing Python 3.13 (ARM64)

  1. Download the latest Windows ARM64 installer for Python 3.13 from the official Python website:

  2. Run the installer.

    • Enable "Add Python to PATH".
    • Select Install Now.
  3. Verify the installation:

python --version
pip --version

Installation

Step 1: Install the TensorFlow wheel

Download the TensorFlow wheel from releases.

Install it without dependencies:

pip install tensorflow-2.22.0.dev0+selfbuilt-cp313-cp313-win_arm64.whl --no-deps

Step 2: Install the required Python dependencies

pip install absl-py astunparse flatbuffers gast google_pasta keras-nightly libclang ml_dtypes numpy opt_einsum packaging protobuf requests setuptools six termcolor typing_extensions wrapt

Step 3: Install h5py

Install the prebuilt binary:

pip install --only-binary=:all: h5py

Step 4: Install grpcio

Download 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.whl

Verify the Installation

import 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')]

Notes

  • 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.

About

The repository contains prebuilt TensorFlow wheels for Windows ARM64

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors