I installed TensorFlow 1.10.1 but when I tried to import TensorFlow it said that I need TensorFlow version 1.10.0. Thus, I installed it and now I get the following warnings:
Or, one could just silence the warning:
import warnings warnings.simplefilter(action='ignore', category=FutureWarning) import tensorflow as tf
This approach was suggested here: How to suppress Pandas Future warning ?