Cannot install Tensorflow on MacOS M1 (Python 9/10)

Can anyone please help with the installation?
OS is mac (12.5)
Chip: Apple M1
Mem: 8G
Python -V 3.9 (actually tried 3.10/ 3.11 all same)
Pip3 -V 22.3.1


it should be qualified with instruction.

@S_Sio,

Welcome to the Tensorflow Forum!

You should install TensorFlow with pip

pip install tensorflow

Note: pip is recommended since TensorFlow is only officially released to PyPI.

After installation, you can verify

python3 -c "import tensorflow as tf; print(tf.reduce_sum(tf.random.normal([1000, 1000])))"

If a tensor is returned, you’ve installed TensorFlow successfully.

Note: For users of Apple M1 computers, to get native performance, you’ll want to follow the instructions found here

Thank you!

(base) sio@ % pip -V
pip 22.3.1 from /Users/sio/opt/anaconda3/lib/python3.9/site-packages/pip (python 3.9)
(base) sio@ % pip install -r ./requirements.txt 
Requirement already satisfied: opencv-python in /Users/sio/opt/anaconda3/lib/python3.9/site-packages (from -r ./requirements.txt (line 1)) (4.7.0.68)
Requirement already satisfied: scikit-learn in /Users/sio/opt/anaconda3/lib/python3.9/site-packages (from -r ./requirements.txt (line 2)) (1.1.1)
ERROR: Could not find a version that satisfies the requirement tensorflow (from versions: none)
ERROR: No matching distribution found for tensorflow
(base) sio@ % pip install tensorflow
ERROR: Could not find a version that satisfies the requirement tensorflow (from versions: none)
ERROR: No matching distribution found for tensorflow
(base) sio@ % uname -a
Darwin ${MYDOMAIN}.local 21.6.0 Darwin Kernel Version 21.6.0: Sat Jun 18 17:05:47 PDT 2022; root:xnu-8020.140.41~1/RELEASE_ARM64_T8101 arm64

Due to I couldn’t upload screenshots in the reply post, I can only paste my terminal above.
Thank you so much for your reply. But it seems not working on my mac.

I knew M1 is a minor group, so If it’s not a common issue then I will use my other PC. never mind.
Thank you again for your time.

Have you tried as suggested using pip ?

pip install tensorflow

Thank you!

Yes, I did try it. Thank you for your help. I worked out this issue now.
I didn’t realize there will be a problem if my python was managed by Anaconda.
I succeed to install by using conda-cli

conda install tensorflow=${version}

Maybe it’s not the real cause but it works.
THank you again.