본문 바로가기
건설 정보/Working Tool

Anaconda 활용하여 Tensorflow 설치하기

by 그로업 2017. 12. 9.

출처 : 

http://blog.naver.com/wideeyed/221137846538

https://tensorflow.blog/category/tensorflow/



참고로 Tensorflow 1.4.1 (Latest)는 문제가 많다. 포럼에서도 1.4.0을 깔라고 추천을 해준다.

큰 문제는 아니지만, 그래도 껄끄러우니...


>>> import tensorflow as tf


를 실행하면 아래와 같은 Warning Message가 뜬다.


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

참조 : https://github.com/tensorflow/tensorflow/issues/14273


Tensorflow 1.4.0의 Link는


https://github.com/lakshayg/tensorflow-build


이다.


그러므로, tensorflow 작업환경 안에서


$ pip install --ignore-installed --upgrade https://github.com/sigilioso/tensorflow-build/raw/master/tensorflow-1.4.0-cp36-cp36m-linux_x86_64.whl


을 실행 해주어야 한다.


※ 주의

$ pip install tensorflow 


를 하면, 1.4.1(Latest)가 설치됨.

댓글