PYTHON

RuntimeWarning tensolrflow does not match runtime version 3.6

              2018. 1. 19. 09:58

RuntimeWarning: compiletime version 3.5 of module 'tensorflow.python.framework.fast_tensor_util' does not match runtime version 3.6



텐솔플로 최신 버전이 3.6과 맞지 않아서 그런것이다. 해결책은 아래와 같다.


  • Wait for an official binary to be released for Python 3.6
  • Ignore the warning, it seems to work.
  • Don't use tensorflow 1.4.0 instead use 1.3.0 pip3 install tensorflow==1.3.0.
  • Install an unofficial tensorflow binary compatible with Python 3.6 from lakshayg/tensorflow-buildor from mind/wheels.


출처 : https://github.com/tensorflow/tensorflow/issues/14182