Knowledge Map
RuntimeWarning tensolrflow does not match runtime version 3.6 본문
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.
'PYTHON' 카테고리의 다른 글
create_db using sqlalchemy (0) | 2018.05.09 |
---|---|
SQLAlchemy session transaction delete 문제 (0) | 2018.04.12 |
python3 bytes class => json (0) | 2018.01.16 |
파이썬 에러 처리 (0) | 2018.01.12 |
python2에서 pandas 설치시 numpy에러 (0) | 2018.01.03 |
Comments