gpt4 book ai didi

python - 如何在 Inno Setup 中使用 Pip 安装 Python 包

转载 作者:太空宇宙 更新时间:2023-11-04 02:56:49 28 4
gpt4 key购买 nike

如何在 Inno Setup 中使用 Pip 安装 Python 库(例如 requests、jinja2、falcon 等)**?

我知道一种在 Inno Setup 中使用 Pip 安装 Python 库的方法(下面只是一个示例代码):

Inno 安装文件:

[Files]
FileName: "python_file.py";

python_file.py

import subprocess
subprocess.call(["pip", "install", "requests"])

请问有没有其他方法可以在 Inno Setup 中使用 Pip 安装 Python 库?

最佳答案

由于 pip 是一个独立的可执行文件,您可以使用 [Run] section 像执行任何其他可执行文件一样执行它:

[Run]
Filename: "pip.exe"; Parameters: "install requests"; StatusMsg: "Installing requests..."

关于python - 如何在 Inno Setup 中使用 Pip 安装 Python 包,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42118902/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com