首页 > 学院 > 开发设计 > 正文

Ubuntu下基于conda的TFLearn的安装

2019-11-10 19:55:22
字体:
来源:转载
供稿:网友

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 h5pypip install tensorflowpip install TFLearn
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表