2017年11月7日 星期二

透過 Anaconda 安裝 Tensorflow 與 Keras

  1. 下載並安裝 Anaconda
  2. 執行以下的指令建立 Python 虛擬環境
    conda create --name tensorflow python=3.5 anaconda
  3. 啟用虛擬環境
    activate tensorflow
  4. 安裝 Tensorflow
    pip install tensorflow
  5. 此時想再使用 pip 會出錯 [1],要先以下述指令強制重新安裝 html5lib
    conda install --force html5lib
  6. 安裝 keras
    pip install keras
參考資料
  1. pip throws TypeError: parse() got an unexpected keyword argument 'transport_encoding' when trying to install new packages

沒有留言: