成功解决AttributeError: type object ‘h5py.h5r.Reference‘ has no attribute ‘__reduce_cython__‘
生活随笔
收集整理的這篇文章主要介紹了
成功解决AttributeError: type object ‘h5py.h5r.Reference‘ has no attribute ‘__reduce_cython__‘
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
成功解決AttributeError: type object 'h5py.h5r.Reference' has no attribute '__reduce_cython__'
目錄
解決問題
解決思路
解決方法
T1、更新Cython 庫、scipy庫
T2、直接更新h5py庫
T3、降低h5py庫的版本
解決問題
File "f:\program files\python\python36\lib\site-packages\PyInstaller\loader\pyimod03_importers.py", line 714, in load_modulemodule = loader.load_module(fullname)File "h5py\h5r.pxd", line 21, in init h5py._convFile "<frozen importlib._bootstrap>", line 971, in _find_and_loadFile "<frozen importlib._bootstrap>", line 955, in _find_and_load_unlockedFile "<frozen importlib._bootstrap>", line 656, in _load_unlockedFile "<frozen importlib._bootstrap>", line 626, in _load_backward_compatibleFile "f:\program files\python\python36\lib\site-packages\PyInstaller\loader\pyimod03_importers.py", line 714, in load_modulemodule = loader.load_module(fullname)File "h5py\h5r.pyx", line 145, in init h5py.h5r AttributeError: type object 'h5py.h5r.Reference' has no attribute '__reduce_cython__' [25780] Failed to execute script CV_Object20211108
?
?
解決思路
沒有該屬性,一般都是版本不兼容引起的!
相關文章
no attribute __reduce_cython__ #1953
Cython的用法以及填坑姿勢
解決方法
T1、更新Cython 庫、scipy庫
很可能是Cython 0.26與python3不兼容,更新Cython 庫、scipy庫
最后,再配置解決的方法,給定參數即可
--hidden-import=h5pyT2、直接更新h5py庫
conda update h5py?
?
T3、降低h5py庫的版本
pip install h5py==2.7.0
?
哈哈!大功告成!
?
總結
以上是生活随笔為你收集整理的成功解决AttributeError: type object ‘h5py.h5r.Reference‘ has no attribute ‘__reduce_cython__‘的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 成功解决pywintypes.error
- 下一篇: 成功解决ModuleNotFoundEr