本文主要是介绍module 'h5py' has no attribute 'File' 解决办法,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
module 'h5py' has no attribute 'File'
这个问题通常是由于h5py这个库的不规范造成。
比如说,我是混着使用pip和conda,可能这就是使得出现这个问题的原因
我的解决办法是
pip uninstall h5py
conda install h5py
这个问题就解决了。
这个解决办法同样适用scipy库调用的问题。
这篇关于module 'h5py' has no attribute 'File' 解决办法的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!