pyinstaller打包生成的exe文件并使用python终止后台的exe程序运行
Posted Data+Science+Insight
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了pyinstaller打包生成的exe文件并使用python终止后台的exe程序运行相关的知识,希望对你有一定的参考价值。
pyinstaller打包生成的exe文件并使用python终止后台的exe程序运行
目录
pyinstaller打包生成的exe文件并使用python终止后台的exe程序运行
#pyinstaller打包生成的exe文件
#执行打包的过程
pyinstaller --clean --onefile test.py
#生成的文件;
"D:\\\\test.exe"
双击exe会生成cmd的窗口
#杀死指定的exe程序
import os
os.system("taskkill /f /im test.exe")
#test.bat
os.system("taskkill /f /im test.bat")
#test.bat文件内容
@echo off
cd d:\\test
start test.exe
exit
参考:R
参考:Is it possible to kill a process on Windows from within Python?
以上是关于pyinstaller打包生成的exe文件并使用python终止后台的exe程序运行的主要内容,如果未能解决你的问题,请参考以下文章