I'm currently trying to run TensorFlow on Nvidia's Jetson Tegra TX1 (running Ubuntu 16.04).
On a usual Ubuntu 16.04 the installation of TensorFlow is as easy as pip install tensorflow
. But due to the TX1's arm64
(aka aarch64
) hardware architecture, this is not possible on the TX1.
I managed to install a prebuilt wheel-file of TensorFlow, but I only found some outdated versions:
- This pip package
tensorflow-aarch64
only provides v1.2 - This Post by JetsonHacks provides v1.3
- This lherman-cs/tensorflow-aarch64 github repo provides v1.4
What I am looking for is a more recent version of TensorFlow ready to install. Does anyone have information on that?
(I also tried to build from source, which failed in several errors and takes some hours)