Installing tensorflow on rasberian jessie

When trying to install tensorflow on a banana pi m64, this error occurs. What to do? Operating system: debian jessie; python version: 3.4.2

Tensorflow-1.5.0-cp34-none-any.whl is not a supported wheel on this platform

Author: dntwrd, 2018-02-01

1 answers

Well, first of all, I would advise you to read the documentation.

If you have already done this, then try to build tenorflow for your platform.

To start, clone the tensorflow repository with the command git clone https://github.com/tensorflow/tensorflow (if you don't have git installed, install it with the command sudo apt install git)

Then you should install bazel.

Then numpy, wheel using pip-a pip install numpy (and wheel) Then you need to run sudo apt install pythonX-dev, where X is the version python

If you need GPU support, read the instructions from tenserflow on the official website.

Then run cd tensorflow && ./configure and follow the instructions in the queries.

Then you will have to build the package bazel build --config=opt //tensorflow/tools/pip_package:build_pip_package

Next, have a cup of coffee or take a walk.

The next step is to create .whl bazel-bin/tensorflow/tools/pip_package/build_pip_package /tmp/tensorflow_pkg

And the last step is installing in python: sudo pip install /tmp/tensorflow_pkg/tensorflow-1.5.0-py2-none-any.whl

 1
Author: Mr Morgan, 2018-02-01 18:51:51