tensorflow를 설치하기 위해서 일단 python과 anaconda를 설치해야한다.

본 포스터의 환경은 python3.8 버전이다. 

ijsilver.tistory.com/54

 

mac os에서 Anaconda 설치하기

일단 아나콘다를 설치하기 위해서 아나콘다 사이트에 들어간다. www.anaconda.com/products/individual Anaconda | Individual Edition Anaconda's open-source Individual Edition is the easiest way to perform..

ijsilver.tistory.com

이 링크를 보고 아나콘다를 설치하면 된다.

아나콘다를 설치한 후

conda create -n tf2 python=3.8

명령어를 입력하여 tf2라는 가상환경을 만든다. 

그 후 conda activate tf2 명령어를 통해 가상환경을 실행 시킨다.

그리고 pip install tensorflow 명령어를 입력하여 tensorflow를 설치한다.

설치가 완료되면 아래 그림과 같이 나타난다.

설치가 완료되었다면 기본적인 명령어를 통해 실험을 해본다. 

python을 실행시키고

import tensorflow as tf

print(tf.reduce_sum(tf.random.normal([1000,1000])))

성공적으로 tensorflow가 설치됐다면 위처럼 결과가 나올것이다.

텐서플로우 설치 성공적! 바위~~

'Development > ML' 카테고리의 다른 글

mac에서 jupyter notebook 설치 방법!!  (0) 2021.01.11
mac os에서 Anaconda 설치하기  (0) 2020.12.29

+ Recent posts