기본 콘텐츠로 건너뛰기

5월, 2019의 게시물 표시

윈도우즈 환경에서 Python + TensorFlow + Keras 설치하기

단계-1.  Anaconda Distribution  페이지 에서 Windows 탭을 선택하고  Python 3.7 버전을 다운로드하여 설치합니다. 단계-2. 아래 메뉴에서 관리자 권한으로   Anaconda Prompt   창을 엽니다.     Windows 시작 메뉴 > Anaconda3 (64-bit) > Anaconda Prompt 단계-3. Anaconda 를 업데이트합니다. >conda update -n base conda 단계-4. Python 사용 환경을 업데이트합니다. >conda update --all 단계-5. TensorFlow 를 설치합니다. >conda install tensorflow 단계-6. 아래의 명령을 실행하여 이상이 없으면 TensorFlow 가 성공적으로 설치된 것입니다. >ipython ... In [1]: import tensorflow as tf In [2]: 단계-7. Keras 를 설치합니다. >conda install keras