我想为我的项目创建一个自动更新程序,该更新程序可以从Internet下载并安装文件。我已经完成了如何用所需的名称将文件下载到所需的位置。卡住的地方是我如何安装文件。
到目前为止,我已经编写了代码:
from urllib.request import urlretrieve
import getpass
url = 'https://sourceforge.net/projects/artigence/files/latest/download'
print('File Downloading')
usrname = getpass.getuser()
destination = f'C:\\Users\\{usrname}\\Downloads\\download.exe'
download = urlretrieve(url, destination)
print('File downloaded')
文件被下载到我的下载文件夹中。现在,如何使用python安装.exe文件?
答案 0 :(得分:1)
您将需要使用subprocess
模块来执行.exe
文件。
import subprocess
cmd = "{download location} batch.exe"
returned_value = subprocess.call(cmd, shell=True) # returns the exit code in unix
print('returned value:', returned_value)
我强烈建议不要为此使用pyautogui
。