1.tensorflow 中的python错误:没有模块命名为pylab
import pylab 报错没有pylab这个模块,解决办法:
需要安装numpy,scipy和matplotlib来获取pylab。在ubuntu中,您可以使用此命令安装它们:
Python版本是python 2.7使用如下命令:
sudo apt-get install python-numpy python-scipy python-matplotlib
Python版本是python 3.6使用如下命令:
sudo apt-get install python3-numpy python3-scipy python3-matplotlib