macOS, TensorFlow 설치

macOS 2018. 1. 22. 18:59

sudo easy_install pip

$ sudo easy_install --upgrade six

$ pip install tensorflow

$ export TF_BINARY_URL=https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-0.12.1-py3-none-any.whl

$ sudo pip3 install --upgrade $TF_BINARY_URL

$ python

>>>import tensorflow as tf

>>>hello = tf.constant('Hello, TensorFlow')

>>>sess = tf.Session()

>>>print(sess.run(hello))

>>>a = tf.constant(10)

>>>b = tf.constant(32)

>>>print(sess.run(a+b))


https://ohienbee.blogspot.kr

'macOS' 카테고리의 다른 글

macOS tree 명령어 설치  (0) 2018.02.18
macOS,패러럴즈 삭제  (0) 2018.01.23
macOS, 날짜 연산 쉘스크립트  (0) 2018.01.22
macOS, mysql, 맥에서 mysql 삭제  (0) 2018.01.21
macOS, 특정 프로세스 죽이기  (0) 2018.01.20
Posted by 앤비
,

#!/bin/bash


:<<END

YEAR=`date +%Y`

MONTH=`date +%m`

DAY=`date +%d`

HOUR=`date +%H`

END



_YEAR=`date -v-9H +"%Y"`

_MONTH=`date -v-9H +"%m"`

_DAY=`date -v-9H +"%d"`

_HOUR=`date -v-9H +"%H"`


echo ${_YEAR}${_MONTH}${_DAY}${_HOUR}

#echo ${YEAR}${MONTH}${DAY}${HOUR}



cd /Users/macmini03/Desktop/restapi

python3 restapi.py ${_YEAR} ${_MONTH} ${_DAY} ${_HOUR}


https://ohienbee.blogspot.kr

'macOS' 카테고리의 다른 글

macOS,패러럴즈 삭제  (0) 2018.01.23
macOS, TensorFlow 설치  (0) 2018.01.22
macOS, mysql, 맥에서 mysql 삭제  (0) 2018.01.21
macOS, 특정 프로세스 죽이기  (0) 2018.01.20
macOS, 오토메이트 구글번역 연결  (0) 2018.01.20
Posted by 앤비
,


'illustration' 카테고리의 다른 글

10년전 일러스트로 끄적거림  (0) 2018.01.21
Posted by 앤비
,