成功解决pyinstaller打包AttributeError:type object pandas._TSObject has no attribute _reduce_cython_
成功解决pyinstaller打包AttributeError:type object pandas._TSObject has no attribute _reduce_cython_
解决问题
pyinstaller打包出现AttributeError:type object pandas._libs.tslibs.conversion._TSObject has no attribute _reduce_cython_
解决方法
1、先尝试隐藏模块的方法
pyinstaller -F CV_Object.py --icon=Jasonniu.ico --hidden-import=pandas._libs.tslibs.conversion._TSObject.__reduce_cython__
(1)、pyinstaller -F CV_Object.py --icon=Jasonniu.ico --hidden-import=pandas._libs.tslibs.conversion._TSObject
(2)、pyinstaller -F CV_Object.py --icon=Jasonniu.ico --hidden-import=yolo3 --hidden-import=yolo3
-F 指只生成一个exe文件,不生成其他dll文件
-w 不弹出命令行窗口
-i 设定程序图标 ,其后面的ico文件就是程序图标
yyy.py 就是要打包的程序
–hidden-import=pandas._libs.tslibs.conversion._TSObject.__reduce_cython_ 隐藏相关模块的引用
或者修改*.spec文件的内容,修改参数即可hiddenimports=['name01','name02']
或者手动添加包所在路径:
pyinstaller -F -p
最后解决的方法:pyinstaller CV_Object.py --icon=Jasonniu.ico --hidden-import=h5py
2、更新pandas库的方法
3、如果你看到这里,还没解决你的问题,那么答案只有一个,你用的python是3.0以上的,就会出现这个问题,python2.7、2.8就不会出现这个问题。
相关文章
scipy.optimize._trlib._trlib.array' has no attribute '__reduce_cython__' when using pyinstaller
no attribute __reduce_cython__ #1953