一、简介
最近用pyautogui库写了一个自动化操作的小程序,为了提高识别效率,使用了confidence参数,代码为xy = pyautogui.locateCenterOnScreen(p,grayscale= False,confidence=0.8)
,其中p为待识别图片参数,confidence:表示灰度值。程序完成后运行没有异常,然后封装时出现一些问题,下面列出两个主要的BUG。
二、报错问题
1. 报出错误【makespec options not valid when a.spec file is given】
因程序中引用多张图片资源,故封装时参照该篇博客打包https://blog.csdn.net/xue_11/article/details/117923245
使用指令为pyi-makespec -F test.py
第一步生成spec文件pyinstaller -F test.spec
第二步常规打包为exe文件
在运行第二步时就报出makespec options not valid when a.spec file is given错误
解决方法:将-F
去掉封装成功
2. 报出错误【NotImplementedError: The confidence keyword argument is only available if OpenCV is install】
封装成功后,运行尝试,想不到闪退,仔细看才发现是报出NotImplementedError: The confidence keyword argument is only available if OpenCV is install
,大致意思是“confidence关键字参数仅在OpenCV安装时可用”,问了一个大佬,才发现是Pyinstaller与OpenCV版本冲突所致。文章来源:https://www.toymoban.com/news/detail-552749.html
解决办法:将原版本的OpenCV卸载,重新安装OpenCV4.5.3.56解决
安装命令:pip install opencv-python==4.5.3.56文章来源地址https://www.toymoban.com/news/detail-552749.html
到了这里,关于pyinstaller打包exe时报错问题记录[makespec options not valid when a.spec file is given]的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!