紀錄在 windows 10 安裝 Keras 的過程
安裝backend
keras支援的backend,3種至少須選擇一種:
- TensorFlow
- Theano
- CNTK
請見 Tensorflow安裝筆記一文。
安裝Keras
安裝
在cmd中輸入:
1 | pip3 install keras -U --pre |
若會發生PermissionError的錯誤,請改輸入[1]:
1 | pip3 install keras -U --pre --user |
驗證安裝成功
在shell裡(筆者使用cmd)進入python:
1 | python |
在python環境中,輸入以下程式碼:
1 | >>>import keras |
若沒有報錯,表示Keras成功安裝。
Keras中mnist數據集測試下載Keras開發包,在欲放置開發包的資料夾輸入以下git指令:
1 | $ git clone https://github.com/fchollet/keras.git |
程式執行沒有錯誤,即成功。
參考資料
Keras Documentation
https://keras.io/
Keras中文文档
https://keras-cn.readthedocs.io/en/latest/
Keras安装和配置指南(Windows) - Keras中文文档
https://keras-cn.readthedocs.io/en/latest/for_beginners/keras_windows/