딥러닝 아나콘다, 텐서플로우, 쥬피터 환경 설정

Programming 2018. 10. 16. 22:09

'골빈해커의 3분 딥러닝' 책을 보면서 딥러닝 공부를 시작했다. 그러나 설치부터 막힌다. 환경설정과 버전차이란....

입문 과정에서 환경설정에서 지나치게 시간 빼앗기고 싶지 않아 쉬운 방법으로 했다.


출처: https://pinkwink.kr/992

아나콘다 환경에 텐서플로우를 설치하고 쥬피터를 설치하여 텐서플로우 코딩환경을 구축하였다.

아래에 설치를 위해 사용한 명령어를 기록하였다. 파이썬은 공식사이트에서 다운로드하여 설치하면 되고, 필자는 3.6버전을 설치하였다.


$ conda create -n tensorflow python=3.6

$ source activate tensorflow

(tensorflow)$ conda install -c conda-forge tensorflow

(tensorflow)$ source deactivate


$ source activate tensorflow

(tensorflow)$ conda install jupyter


(tensorflow)$ jupyter notebook


자... 이제 실습을 시작해보자.

admin