'Anaconda Prompt (anaconda3)'에서 'test01'이라는 가상 환경 생성이 완료되면, 가상 환경 'test01'이 활성화된 상태에서 아래의 명령어를 입력해서 텐서플로(TensorFlow)를 설치한다. conda install tensorflow - 텐서플로(TensorFlow) 설치 특정 버전의 텐서플로(TensorFlow) 설치를 원할 경우에는 아래의 명령어를 이용한다. pip install tensorflow==1.15 - 텐서플로(TensorFlow) 설치 1.15 버전 텐서플로(TensorFlow)의 설치가 완료되면, 파이썬(Python)을 실행해서 설치된 텐서플로(TensorFlow)의 버전을 확인해본다. python - 파이썬(Python) 실행 import tensorf..