Reputation: 1320
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:
tensorflow-aarch64
only provides v1.2What 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)
Upvotes: 0
Views: 608
Reputation: 1320
TensorFlow 1.10
Nvidia itself suggests officially to use the current build from this repo: https://github.com/peterlee0127/tensorflow-nvJetson
And I also found another repo providing pre-built wheels: https://github.com/JasonAtNvidia/JetsonTFBuild
Upvotes: 0