红联Linux门户
Linux帮助

tflearn安装报错scipy not supported!

发布时间:2017-03-22 10:01:56来源:linux网站作者:Jokefanny
在ubuntu16.04系统中,安装好tensorflow和tflearn后,运行python tflearn命令时报以下错误:
hdf5 is not supported on this machine
scipy not supported!
 
解决方法很简单,两行代码就可以解决,如下:
pip install h5py --user
sudo apt-get install python-scipy
 
本文永久更新地址:http://www.linuxdiyf.com/linux/29369.html