아미(아름다운미소)

Mac에 TensorFlow 설치 본문

서버/MAC

Mac에 TensorFlow 설치

유키공 2018. 1. 9. 10:30

Mac에 TensorFlow 설치

Python 3.6.x로 설치합니다.
$ python --version
Python 3.6.3

tensorflow를 설치합니다.
$ pip3 install tensorflow

설치가 되는 것을 확인할 수 있습니다. 이제 tensorflow가 정상적으로 설치 되었는지 확인해 봅시다. python 명령 실행 후 아래 코드를 실행해 봅니다.
>>> import tensorflow as tf
>>> hello = tf.constant('Hello, tongchun')
>>> sess = tf.Session()
>>> print(sess.run(hello))
b'Hello, tongchun'

tensorflow의 버전을 확인할 수 있다.
>>> import tensorflow as tf
>>> print(tf.__version__)
1.3.0

위에 설명한 것럼 설치 후 import tensorflow as tf 타이핑했을때 버전이 맞지 않는다는 메시지가 나올 경우 whl 파일로 upgrade할 수 있습니다.
>>> import tensorflow as tf
/usr/local/Cellar/python3/3.6.3/Frameworks/Python.framework/Versions/3.6/lib/python3.6/importlib/_bootstrap.py:219: RuntimeWarning: compiletime version 3.5 of module 'tensorflow.python.framework.fast_tensor_util' does not match runtime version 3.6
  return f(*args, **kwds)

tensorflow wheel 파일은 아래 링크에서 다운 받을 수 있습니다. [https://github.com/tensorflow/tensorflow] Individual whl files에서 Mac CPU-only 중 Python3 링크를 클릭해 whl파일을 다운 받습니다 제가 받은 파일 이름은 tf_nightly-1.head-py3-none-any.whl 입니다. 이제 pip 업그레이드를 해 줍니다.
$ sudo pip3 install --upgrade tf_nightly-1.head-py3-none-any.whl
 설치 완료 후 python을 실행하고 import하면 정상적으로 불러오는 것을 확인할 수 있습니다.


Comments