1. Python 설치
- 해당 사이트에 들어간 후 이메일 작성, 이메일로 온 페이지에서 다운로드
https://www.python.org/downloads/release/python-353/
Python Release Python 3.5.3
The official home of the Python Programming Language
www.python.org
2. Anaconda 설치
https://www.anaconda.com/download
Download Anaconda Distribution | Anaconda
Download Anaconda's open-source Distribution today. Discover the easiest way to perform Python/R data science and machine learning on a single machine.
www.anaconda.com
- 설치 후 Anaconda prompt 관리자 권한으로 실행
3. TensorFlow 설치
# pip 업그레이드
python -m pip install --upgrade pip
# Conda 환경
conda create -n tensorflow python=3.5
# TensorFlow 설치 (anaconda 환경에서는 pip 보다 conda를 사용하여 설치하는 것이 더 안정적)
conda install tensorflow
# Test
> python (python 터미널 오픈)
이후 하단 참조
