Table of Contents
keras 설치하기
pip3 install keras
# gpu 버전
# pip3 install tensorflow-gpu
#cpu 버전
pip3 install tensorflow
# 메모리 에러가 발생하면 아래 명령을 실행한다.
# pip3 install --no-cache-dir tensorflow
FutureWarning 제거를 위해 numpy 버전을 낮춥니다.
pip3 uninstall numpy
pip3 install "numpy<1.17"