반응형
Recent Posts
Recent Comments
관리 메뉴

개발잡부

아나콘다 tensorflow 설치 본문

Python/system

아나콘다 tensorflow 설치

닉의네임 2021. 10. 22. 13:04
반응형

아나콘다 설치 후 

 

가상환경  목록확인

conda info --envs 

 

가상환경 생성

conda create --name "doo" python="3.7"

 

shell 껏다 키고

 

가상환경 실행 

conda activate doo

 

텐서플로우 설치

conda install tensorflow

 

주피터 노트북 설치

conda install jupyter notebook

 

주피터 노트북 실행

jupyter notebook

 

 

텐서플로 확인

 

import tensorflow as tf

with tf.compat.v1.Session() as sess:
    hello = tf.constant("Hello")
    world = tf.constant("World")
    sentence = hello + world
    pr = sess.run(sentence)
    print(pr)

 

 

 

반응형

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

[anaconda] 아나콘다 설치  (0) 2021.12.24
[anaconda] Uninstalling Anaconda  (0) 2021.12.22
Comments