欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

tflearn安装报错hdf5 is not supported on this machine

程序员文章站 2024-01-10 15:15:55
...

在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