tflearn安装报错scipy not supported!

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/GISLN/article/details/64444596


在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

猜你喜欢

转载自blog.csdn.net/GISLN/article/details/64444596