I am using pycharm to code and I successfully download tensorflow. But it gives me the warnings as:
The TensorFlow library wasn't compiled to use SSE4.2 instructions, but
these are available on your machine and could speed up CPU
computations.
The TensorFlow library wasn't compiled to use AVX instructions, but
these are available on your machine and could speed up CPU
computations.
The TensorFlow library wasn't compiled to use AVX2 instructions, but
these are available on your machine and could speed up CPU
computations.
The TensorFlow library wasn't compiled to use FMA instructions, but
these are available on your machine and could speed up CPU
computations.
I saw other links and it doesn't solve my question. I tried to install tensorflow again by Source. And I stuck with building the pip package:
$ bazel build --config=opt //tensorflow/tools/pip_package:build_pip_package
And my computer gives me the error:
ISO C++11 does not allow conversion from string literal to 'char *' [-Wwritable-strings]
I use mac and I don't familiar with Cpp so don't understand what it means. Anybody can help me solve this question?