2020. 12. 10. 09:45ㆍprogramming/AI & deeplearning
- environment : windows 10 / 64bit
- tensorflow-gpu ver : 2.3.0
python install (3.8.3)
https://www.anaconda.com/products/individual
anaconda3 2020.07
IDE : pycharm community install
https://www.jetbrains.com/ko-kr/idea/download/#section=windows
다운로드 IntelliJ IDEA: JetBrains가 만든 전문 개발자용 Java IDE
최신 버전 다운로드: IntelliJ IDEA (Windows, macOS, Linux)
www.jetbrains.com
nvidia graphic driver download
https://www.nvidia.co.kr/Download/Find.aspx?lang=kr
: tensorflow-gpu 버전을 사용하기 위해
cuda tookkit 10.1 install
https://developer.nvidia.com/cuda-toolkit-archive
https://developer.nvidia.com/cuda-10.1-download-archive-update2
CUDA Toolkit 10.1 update2 Archive
Select Target Platform Click on the green buttons that describe your target platform. Only supported platforms will be shown. Operating System Architecture Distribution Version Installer Type Do you want to cross-compile? Yes No Select Host Platform Click
developer.nvidia.com
cuda_10.1.243_426.00_win10
CUDA install
cudnn 10.1 install (nvidia sign in)
https://developer.nvidia.com/rdp/cudnn-download
cudnn-10.1-windows10-x64-v7.6.5.32
cudnn에서 압축해제한 파일들을 모두
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.1 경로에 붙여넣기
tensorflow-gpu (2.3.0)
pip install tensorflow-gpu==2.3.0
pip list (설치확인)
tensorflow-gpu
tensorflow-gpu-estimator
tensorflow 설치 확인
c:\WINDOWS\system32> python
>>> import tensorflow as tf
keras install(2.4.3)
pip install keras==2.4.3
>>>import keras
버전 호환 확인
https://www.tensorflow.org/install/source_windows#tested_build_configurations
Windows의 소스에서 빌드 | TensorFlow
소스에서 TensorFlow pip 패키지를 빌드하고 Windows에 설치합니다. 참고: 잘 테스트되고 사전 빌드된 Windows 시스템용 TensorFlow 패키지가 이미 제공되고 있습니다. Windows용 설정 다음 빌드 도구를 설치
www.tensorflow.org
'programming > AI & deeplearning' 카테고리의 다른 글
[파이썬을 하나도 모르는 사람의 딥러닝] 퍼셉트론이란 (0) | 2020.12.10 |
---|