Sponsored By
















ㅁ. 텐서플로우 설치에러

 

ㅁ. 해결방법 1: 

sudo apt install libatlas-base-dev

>

 

 

 

 

ㅁ. 해결방법 2:

pip3 install --upgrade tensorflow

※. 에러날 경우, '위 해결방법 1'을 수행 후 재 시도

>

 

ㅁ. 정상작동 확인

import tensorflow as tf

hello = tf.constant('hello, TF')
sess=tf.Session()
print(sess.run(hello))

>



Sponsored By















+ Recent posts