python生成exe文件unabletofindpythoncom37.dll
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python生成exe文件unabletofindpythoncom37.dll相关的知识,希望对你有一定的参考价值。
参考技术A 1.在cmd里安装pyintsaller包2.在cmd里输入打包成exe的命令。如系统提示"找不到pythoncom37.dll"或"pythoncom37.dll缺失"或者"pythoncom37.dll错误"等等,不用担心,首先把pythoncom37.dll下载到本机。
py2exe是一个将python脚本转换成windows上的可独立执行的可执行程序(*.exe)的工具,这样,你就可以不用装python而在windows系统上运行这个可执行程序。
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?
以上是关于python生成exe文件unabletofindpythoncom37.dll的主要内容,如果未能解决你的问题,请参考以下文章
pyinstaller打包生成的exe文件并使用python终止后台的exe程序运行