【TensorFlow 2.0】Ubuntu16.04 虚拟环境中安装TensorFlow 2.0(CPU)
Ubuntu16.04 虚拟环境中安装 TensorFlow 2.0(CPU)
第一步——TensorFlow 2.0 系统要求
第二步——设置虚拟环境
参考:https://blog.csdn.net/frozennet/article/details/105420207
第三步——安装TensorFlow 2.0
新建工程文件夹
$ mkdir ~/tf-demo
进入工程文件夹
$ cd ~/tf-demo
新建虚拟环境
$ python3 -m venv tensorflow-dev
启动虚拟环境
$ source tensorflow-dev/bin/activate
关闭虚拟环境
$ deactivate
安装TensorFlow 2.0,非GPU版本
$ pip3 install tensorflow==2.0.0-alpha0
出现的错误
错误描述:
ERROR: markdown 3.1.1 has requirement setuptools>=36, but you’ll have setuptools 20.7.0 which is incompatible.
原因:
setuptools版本不匹配
解决方法:
(1)卸载原有的setuptools
$ sudo apt-get remove python-setuptools
(2)卸载setuptools依赖的软件包
sudo apt-get autoremove
(3)重新安装其它版本setuptools
$ sudo pip install setuptools==39.0.0
参考:
关于cleaning up with apt-get:https://www.networkworld.com/article/3453032/cleaning-up-with-apt-get.html
关于解决错误:https://blog.csdn.net/chengyq116/article/details/93654175
第四步——验证安装
新建hello.py文件
$ vim hello.py
编写代码
import tensorflow as tf tf.compat.v1.disable_eager_execution() hello=tf.constant("Hello TensorFlow") sess=tf.compat.v1.Session() print(sess.run(hello))
参考:http://www.tensorfly.cn/tfdoc/get_started/os_setup.html#virtualenv_install
运行.py文件
$ python3 hello.py
过程输出信息
不同的系统,输出信息不同
2020-04-10 03:26:55.418775: I tensorflow/core/platform/cpu_feature_guard.cc:142] Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX2 FMA 2020-04-10 03:26:55.427746: I tensorflow/core/platform/profile_utils/cpu_utils.cc:94] CPU Frequency: 2400000000 Hz 2020-04-10 03:26:55.428398: I tensorflow/compiler/xla/service/service.cc:162] XLA service 0x35f5630 executing computations on platform Host. Devices: 2020-04-10 03:26:55.428458: I tensorflow/compiler/xla/service/service.cc:169] StreamExecutor device (0): <undefined>, <undefined>
这表明您拥有一个可以通过TensorFlow进行优化以提高性能的指令集。如果看到此消息,则可以忽略它并继续。
理论输出
Hello TensorFlow
实际输出
b'Hello TensorFlow'
出现错误
错误描述:错误输出
b'Hello TensorFlow'
原因:
Tensorflow将字符串表示为Bytes对象. This ‘b’ is Python’s way of marking Bytes objects
解决方法:
通过应用.decode()将session.run()返回的Bytes对象转换为常规的python字符串
修改代码:
import tensorflow as tf tf.compat.v1.disable_eager_execution() hello=tf.constant("Hello TensorFlow") sess=tf.compat.v1.Session() print(sess.run(hello).decode('UTF-8'))
正确输出:
Hello TensorFlow
参考
https://www.digitalocean.com/community/tutorials/how-to-install-and-use-tensorflow-on-ubuntu-16-04
推荐阅读
-
Create an op on tensorflow; 在tensorflow 1.7/2.0 中创建一个 Op操作
-
rk3399pro-EVB安装RKNN-Toolkit1.6 Tensorflow2.0 Pytorch1.6
-
解决Linux Tensorflow2.0安装问题
-
华为matebook win+deepin 15.11双系统 + 双显卡 + 使用/卸载大黄蜂方案 + NVIDIA独显驱动安装 + tensorflow-gpu-2.0
-
Win10系统中安装Tensorflow (CPU版本)------PyCharm+Anaconda
-
Windows10下Tensorflow2.0-GPU的安装(基于CUDA10.0+Python3.7+Anaconda)
-
(Win10)在Anaconda中安装tensorflow-cpu环境,并在Pycharm中使用
-
在anconda创建Python3.6虚拟环境安装tensorflow1.8(cpu)和keras2.1.6
-
TensorFlow-Gpu 2.0版本中遇到的一些问题及解决方案的记录
-
环境搭建(3)—— Tensorflow2.0在Ubutu下安装