Hello community.
I need to install tensorflow for python3 run on the imx8MM EVK board.
After reference the document about NXP eIQ™ Machine Learning at: "https://www.nxp.com/docs/en/nxp/user-guides/UM11226.pdf" , I was installed tensorflow, running benchmark and building example from sources successfully.
But "python3 import tensorflow as tf" had the error:
root@imx8mmevk:~/bazel# python3
Python 3.5.5 (default, Nov 6 2019, 02:53:57)
[GCC 7.3.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import tensorflow
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named 'tensorflow'
I tried "pip3 install tensorflow" but failed.
root@imx8mmevk:~/bazel# pip3 install tensorflow
ERROR: Could not find a version that satisfies the requirement tensorflow (from versions: none)
ERROR: No matching distribution found for tensorflow
I also tried to install tensorflow through bazel as shown in the link below but it failed at build bazel.
https://github.com/samjabrahams/tensorflow-on-raspberry-pi/blob/master/GUIDE.md
ERROR: Could not build Bazel
Let me ask is there any way for tensorflow to work on python3?
Thank so much.