pyinstaller打包出错numpy.core.multiarray failed to import
程序员文章站
2023-12-25 18:13:15
py原文件运行时正常,但用pyinstaller打包为exe后,在运行则报错: 这是因为cv2要求的numpy版本与你装的numpy版本不一样,导致冲突;网上很多说升级numpy,但你把numpy升的再新,cv2要求的版本却是旧的好吗? 所以将两者都重新安装为适配版本就行,如下: 或者可以试试只将n ......
py原文件运行时正常,但用pyinstaller打包为exe后,在运行则报错:
这是因为cv2要求的numpy版本与你装的numpy版本不一样,导致冲突;网上很多说升级numpy,但你把numpy升的再新,cv2要求的版本却是旧的好吗?
所以将两者都重新安装为适配版本就行,如下:
pip install opencv-python==3.4.2.17 numpy==1.14.5
或者可以试试只将numpy版本降低
pip install numpy==1.14.5
推荐阅读
-
pyinstaller打包出错numpy.core.multiarray failed to import
-
pyinstaller打包出错numpy.core.multiarray failed to import
-
pyinstaller 打包出现“Failed to execute script XXX“问题
-
Pyinstaller 打包exe 报错 "failed to execute script XXX"的一种解决方案
-
虚幻引擎UE4.25版本使用Android打包出错提示:ERROR: cmd.exe failed with args /c 和 :app:assembleDebug的解决方法
-
pyinstaller 打包出现“Failed to execute script XXX“问题
-
pyinstaller打包exe文件后,运行提示 Failed to execute script xxxx的解决办法
-
Pyinstaller 打包exe 报错 "failed to execute script XXX"的一种解决方案
-
虚幻引擎UE4.25版本使用Android打包出错提示:ERROR: cmd.exe failed with args /c 和 :app:assembleDebug的解决方法