关于linux环境中安装tensorflow

pip安装tensorflow

一、ubuntu16.04也就是本系统自带了python2.7和python3.5

(注:设置python3.5版本为默认(设置python2.7和python3.5的优先级)

$ sudo update-alternatives --install /usr/bin/python python /usr/bin/python2.7  1    $ sudo update-alternatives --install /usr/bin/python python /usr/bin/python3.5  2 

)

安装cpu版本的tensorflow

如果使用python2+ :pip install tensorflow

如果使用python3+:pip3 install tensorflow

2、查看tensorflow 安装的位置 如:pip3 show tensorflow

3、卸载tensorflow如:sudo pip uninstall tensorflow

三、如果安装了anaconda3,则系统默认的python为3.6版本

(注:sudo gedit ~/.bashrc  可查看路径,也可在弹出的表中添加或是注释掉已经添加的路径)

直接使用pip  install  tensorflow则直接将对应cpu版本的tensorflow安装到了anaconda/lib/python3.6/site-packges/目录下

在终端中打开spyder中便可以导入tensorflow模块了

你可能感兴趣的:(关于linux环境中安装tensorflow)