Ubuntu下基於conda的TFLearn的安裝

CopperDong發表於2017-11-15

TFLearn是在Tensorflow的基礎上進行封裝的一個包,能夠能簡便的搭建網路。conda是一個非常好用的包管理器,能夠管理好多個包之間的依賴關係。因此,基於conda能夠較方便的安裝TFLearn。 
其安裝步驟如下:

(1)使用conda建立環境
conda create -n tflearn python=3.5
(2)進入環境
source activate tflearn
(3)使用conda安裝numpy pandas jupyter notebook matplotlib共4個包
conda install numpy pandas jupyter notebook matplotlib
(4)安裝TFLearn的依賴項
conda install scipy h5py
pip install tensorflow    (pip install -U tensorflow 完全安裝)
pip install TFLearn
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11

相關文章