# keras --- :::danger Anaconda 新手適應的安裝方式,想要輕鬆管理請移至 [pipenv](https://hackmd.io/@rennytw/HksHRo7JH) ::: 預先下載 請安裝 Anaconda3-4.3.1 下載練習程式碼:https://drive.google.com/open?id=0BxYvBSJrb4uzaGxPOHJxX2Vya1k ## Anaconda3-4.3.1 安裝 (Windows 10, tensorflow) 安裝 anaconda3-4.3.1 使用管理者權限開啟 anaconda prompt (以下都在 anaconda prompt 下) 輸入 conda create -n tensorflow python=3.5 輸入 activate tensorflow 輸入 pip install tensorflow (無 CUDA 支援的 GPU) 在 python 內利用此程式測試: import tensorflow as tf 輸入 conda install numpy scipy mingw libpython 輸入 pip install keras 在 python 內測試 keras: import keras import tensorflow (沒出現問題就代表安裝成功) ## 需要的 libraries 安裝 pip3 install scipy pip3 install numpy pip3 install mingw pip3 install libpython pip3 install pillow (存圖用) pip3 install h5py (儲存 model) pip3 install future pip3 install matplotlib ## 以上都完成後 請到練習程式碼的目錄下,測試是否能跑 目錄下執行 python ex00_firstModel.py ![](https://i.imgur.com/QQn4iSV.png) ###### tags: `keras` `python`