4

I cant able to install tensorflow-io on m1 mac under Environment. Though i Succeeded in installing tensorflow-macos and other libraries but Getting error in tensorflow_io

"ERROR: Could not find a version that satisfies the requirement tensorflow-io (from versions: none)

ERROR: No matching distribution found for tensorflow-io"

Machine: M1 Mac

OS: MacOS Monterey 12.0.1

Env: Miniforge

Python: 3.9

Tensorflow version: 2.5.0

1 Answer 1

4

You can install tensorflow-io with a wheel file.

First, clone the tensorflow/io repository and build it as shown below.

$ python3 setup.py -q bdist_wheel

The wheel file will be created in the dist directory. You can then install the wheel by doing the following.

$ python3 -m pip install --no-deps <wheel-file-build-from-last-step>

For your reference, the results of running it in my environment are as follows.

$ git clone https://github.com/tensorflow/io.git
$ cd io
$ python3 setup.py -q bdist_wheel
Project: tensorflow-io
Exclude: ['tests', 'tests.*', 'tensorflow_io_gcs_filesystem', 
'tensorflow_io_gcs_filesystem.*']
Install Requires: ['tensorflow-io-gcs-filesystem==0.24.0']
Project Rootpath: tensorflow_io
$ python3 -m pip install --no-deps dist/tensorflow_io-0.24.0-cp39-cp39-macosx_11_0_arm64.whl
Processing ./dist/tensorflow_io-0.24.0-cp39-cp39-macosx_11_0_arm64.whl
Installing collected packages: tensorflow-io
Successfully installed tensorflow-io-0.24.0

Reference URL: arm64 support for M1

2
  • 1
    On an M1 air I get: ERROR: tensorflow_io-0.24.0-cp38-cp38-macosx_10_14_arm64.whl is not a supported wheel on this platform. Apr 12 at 1:51
  • I get this error: SetuptoolsDeprecationWarning: setup.py install is deprecated. Use build and pip and other standards-based tools. warnings.warn(
    – Jana.k
    Jun 15 at 14:19

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

Not the answer you're looking for? Browse other questions tagged or ask your own question.