I installed tensor flow on Intel NUC with pip3 pip3 install --upgrade tensor flow But got below error 2018-10-25 20:14:31.685641: I tensorflow/core/platform/cpu_feature_guard.cc:141] Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX2 FMA cannot open X server
After googling found that i need to build tensor flow from source. So i installed bazel version - 0.18 Git clone tensor flow and checked out 1.12 version. Further used below commands: bazel build -c opt --copt=-mavx --copt=-msse4.1 --copt=-msse4.2 -k //tensorflow/tools/pip_package:build_pip_package
bazel-bin/tensorflow/tools/pip_package/build_pip_package /tmp/tensorflow_pkg
pip3 install /tmp/tensorflow_pkg/NAME_OF_WHEEL.whl
and i got error tensorflow-1.12.0rc1-cp27-cp27mu-linux_x86_64.whl is not a supported wheel on this platform.
pip3 --version pip 9.0.3 from /usr/local/lib/python3.5/dist-packages (python 3.5)
sudo pip3 --version pip 9.0.3 from /usr/local/lib/python3.5/dist-packages (python 3.5)
How to solve this issue?