본문 바로가기
연구/소원 - 팀장

[200809] 머신러닝 개발환경 구축

by I am wish 2020. 8. 12.
반응형

  1) anaconda prompt 실행(그냥 cmd에서 하면 안됨ㅜ)

  2) pip install tensorflow 명령어 입력하여 텐서플로우 설치

  3) 설치 완료되면 python 입력하여 파이썬 커맨드 라인으로 입장

  4) import tensorflow as tf 

     hello = tf.constant('hello world')

     tf.print(hello)

   실행하여 tensorflow가 잘 작동되는지 확인

 

반응형