不支持hdf5(请安装/重新安装h5py)不支持Scipy!什么时候导入TFLearn?

时间:2016-08-17 16:06:26

标签: python scipy tensorflow

我收到了这个错误:

tflearn

当我尝试导入# data preparation/ load feTargetPv <- structure(list(ModelYear = 2012:2016, ComplianceCategory = c("pv","pv", "pv", "pv", "pv"), fetargetfix = c(30.7, 31.4, 32.1, 33.3, 34.7), a = c("35.95", "36.8", "37.75", "39.24", "41.09"), b = c("27.95", "28.46", "29.03", "29.9", "30.96"), c = c("0.0005308", "0.0005308", "0.0005308", "0.0005308", "0.0005308"), d = c("0.006057", "0.00541", "0.004725", "0.003719", "0.002573")), .Names = c("ModelYear", "ComplianceCategory", "fetargetfix", "a", "b", "c", "d"), row.names = c(47L, 49L, 51L, 53L, 55L), class = "data.frame") 时。我认为由于这个问题,我的TFLearn代码无法正常工作?

3 个答案:

答案 0 :(得分:10)

几分钟前我遇到了同样的问题,你几乎只需要使用当前环境的软件包管理器重新安装h5py。

http://docs.h5py.org/en/latest/build.html

答案 1 :(得分:1)

在此链接http://www.lfd.uci.edu/~gohlke/pythonlibs/下载h5py和curses包,并像这样执行cmd                pip安装文件名 该文件必须存在于C:\文件夹中才能执行希望它解决。

答案 2 :(得分:1)

与您同样的问题:

  • hdf5 not supported
    • 您可以重新安装hdf5来解决问题
  • Scipy not supported!
    • 首先,您应该安装numy+mkl,设置成功后尝试导入tflearn
    • 如果再次出现错误,可以重新安装Scipy

这是我的解决方案。

enter image description here