Ubuntu下基于conda的TFLearn的安装

前端之家收集整理的这篇文章主要介绍了Ubuntu下基于conda的TFLearn的安装前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

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 TFLearn
原文链接:https://www.f2er.com/ubuntu/354668.html

猜你在找的Ubuntu相关文章