don't stop believing

Mac에 TensorFlow 설치 본문

Python/Tensorflow

Mac에 TensorFlow 설치

Tongchun 2017. 10. 18. 17:25

Mac에 TensorFlow를 설치하는 건 Windows보다 간단합니다.

개발 편의를 위해 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하면 정상적으로 불러오는 것을 확인할 수 있습니다.


'Python > Tensorflow' 카테고리의 다른 글

openAI gym 설치하고 sample 따라하기 (on Mac)  (0) 2017.11.28
인공지능 학습 자료  (0) 2017.11.21
Windows에 Tensorflow 설치하기  (1) 2017.09.30
Comments