IT/AI

머신러닝 개발환경 구축

1am_wish 2020. 11. 24. 18:03
728x90
반응형

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

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

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

  4) import tensorflow as tf 

     hello = tf.constant('hello world')

     tf.print(hello)

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

 

728x90
반응형