tensorflow 윈도우 에서 1.0 설치
TensorFlow 1.0 버전이 릴리즈되면서 이제 Windows에서도 docker를 이용하지 않고 바로 pip3를 통해 TensorFlow를 설치할 수 있게 되었다.
python 3 설치
https://www.python.org/downloads/release/python-353/
다운로드 한 뒤에 설치하면 된다.
tensorflow 설치
- Cpu
pip3 install --upgrade tensorflow
- Gpu
pip install --upgrade tensorflow-gpu
설치 확인
$ python
>>> import tensorflow as tf
>>> tf.__version__
'1.0.1'
>>> hello = tf.constant("hello")
>>> sess = tf.Session()
>>> print(sess.run(hello))
b'hello
>>> a = tf.constant(10)
>>> b = tf.constant(32)
>>> print(sess.run(a + b))
42