爬虫 google浏览器 pyinstaller打包成exe

本文介绍如何在使用PyInstaller将包含ChromeDriver的webdriver爬虫项目打包成exe文件时,避免出现DOS黑窗口。通过修改_services.py文件中的subprocess.Popen参数,加入creationflags=134217728来实现这一目标。
摘要由CSDN通过智能技术生成

相关文档
https://blog.csdn.net/sinat_36797467/article/details/120288627
https://blog.csdn.net/xiaofeixia666888/article/details/107258470/
https://blog.csdn.net/weixin_43853097/article/details/104198668


python3使用pyinstaller打包webdriver爬虫时,chromedriver弹窗DOS黑窗口
    更改一个变量值:位置 \venv\Lib\site-packages\selenium\webdriver\common    找到_ services.py   
    在 self.process = subprocess.Popen  添加creationflags=134217728

所有操作在code目录下执行

    单个文件.exe
    执行 pyinstaller -F --noconsole --name=xxxx run.py
    需要手动把chromedriver.exe放在xxxx.exe同级目录下


    多文件

    执行  pyinstaller -D --noconsole --name=xxxx run.py

    修改 xxxx.spec文件中   datas=[('chromedriver.exe','.')],

    执行 pyinstaller -D ICHelper.spec

内部调用其他exe程序 需要创建相关文件夹及文件

例如 内部启动redis 

# 启动redis
main = ".\\etc\\redis\\redis-server.exe"
# 异步执行 os.system() 这个方法是拥塞的
os.popen(main)


 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值