使用CloudScreper模块创建.exe(Pyinstaller)时出错

2022-03-23 00:00:00 python python-3.x pyinstaller

问题描述

我正在尝试从我的python脚本创建一个.exe。该脚本使用CloudScreper包。当我创建.exe并执行它时,它显示以下错误:

FileNotFoundError: [Errno 2] No such file or directory: 'C:\...\MEI1....\cloudscraper\user_agent\browsers.json'

该错误仅在我尝试执行.exe文件时出现。

为什么会发生这种情况?是否在pyinstaller中不能使用CloudScreper?

项目结构如下:

C:UsersandreOneDriveDocumentosProgrammingPythonPython3proyect

proyect 
   |
   |______ main.py
   |
   |______ services
           |________ __init__.py
           |_______ main_service.py
           |_______ sql_service.py

这与我的项目结构非常相似,因为很明显,我无法共享我的项目的实际项目结构。


解决方案

找到的解决方案是在.exe路径中复制所需的文件夹,但就目前而言,我发现如果您使用--onefile修饰符来创建.exe,则无法实现这一点,相反,您不应该使用它来复制此类.exe路径中的CloudSlper文件夹,这应该是可行的

注意: 该路径不是父文件夹CloudScreper,而是其中包含user_agent文件夹的嵌套文件夹

相关文章