http://blog.daum.net/buillee/1513
1. 시스템종류 : 64비트 운영체제(윈도우즈)
2. Python3.5을 제공하는 Aanaconda3 4.2.0 버전을 다운로드함.
(https://repo.continuum.io/archive/index.html 에서 Anaconda3-4.2.0-Windows-x86_64.exe 를 다운로드)
3. Anaconda3 4.2.0을 실행해서 설치함
4. 제어판 --> 시스템 --> 고급 --> 환경변수 --> 사용자 변수 --> Path에 Anaconda3이 설치된 경로를 지정
(저의 경우는 다음과 같음.
C:\Users\buil\Anaconda3;C:\Users\buil\Anaconda3\Scripts;C:\Users\buil\Anaconda3\Library\bin;)
5. 제어판 --> 시스템 --> 고급 --> 환경변수 --> 시스템 변수 --> Path에 Anaconda3이 다음과 같이 지정함
(C:\Users\buil\Anaconda3\Scripts;)
6. 컴퓨터 다시 시작
7. 실행 --> cmd
8. command 창에서 conda create -n 지정이름 python=3.5를 입력함
(저는 conda create -n tf3 python=3.5)
중간에 질문에 나오면 y를 선택함
9. command 창에서 activate tf 입력함
10. command 창에서 pip install tensorflow 입력함
에러가 나지 않으면 잘 설치됨
11. command 창에서 jupyter notebook을 입력함
그러면 브라우저가 실행되며, 그곳에서 명령어를 입력해서 TensorFlow를 연습하면 됨.
'Deep Learning > setup_related' 카테고리의 다른 글
윈도우10(Windows 10) / Caffe / CUDA / cuDNN / Python 설치 (0) | 2017.03.21 |
---|---|
Installing Keras, Theano and Dependencies on Windows 10 (0) | 2017.03.21 |
텐서플로우 설치하기 (0) | 2017.03.18 |
윈도우 텐서플로우 설치 (Tensorflow installation in window) (0) | 2017.03.18 |
아나콘다를 이용한 윈도우에 텐서플로우 설치해보기 (0) | 2017.03.18 |