Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- IOS
- swift
- 다이어트
- PyQt
- pandas
- node.js
- ASP
- 리눅스
- GIT
- port
- tensorflow
- javascript
- Linux
- 날짜
- 함수
- flutter
- urllib
- MySQL
- 맛집
- Unity
- ubuntu
- python
- PyQt5
- Excel
- PER
- mssql
- 라즈베리파이
- sqlite
- 유니티
- MS-SQL
Archives
아미(아름다운미소)
Mac에 TensorFlow 설치 본문
Mac에 TensorFlow 설치
Python 3.6.x로 설치합니다.$ python --version Python 3.6.3
$ pip3 install tensorflow
>>> import tensorflow as tf >>> hello = tf.constant('Hello, tongchun') >>> sess = tf.Session() >>> print(sess.run(hello)) b'Hello, tongchun'
>>> import tensorflow as tf >>> print(tf.__version__) 1.3.0
>>> 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)
$ sudo pip3 install --upgrade tf_nightly-1.head-py3-none-any.whl 설치 완료 후 python을 실행하고 import하면 정상적으로 불러오는 것을 확인할 수 있습니다.
'서버 > MAC' 카테고리의 다른 글
Clamshell 모드 (맥북 외부 모니터만 사용하고자 할때) (0) | 2020.03.16 |
---|---|
MAC에 python 개발 환경 구축 (0) | 2018.01.06 |
자주 사용하는 Mac 단축키 (0) | 2018.01.03 |
Mac에서 hosts 파일 변경 (0) | 2018.01.02 |
nmap으로 열려있는 포트 확인 (0) | 2018.01.01 |
Comments