gpt4 book ai didi

python distutils简单示例 - 如何解析参数

转载 作者:行者123 更新时间:2023-12-01 02:31:51 24 4
gpt4 key购买 nike

引用A Simple Example from python.org :

这是setup.py:

from distutils.core import setup
setup(name='foo',
version='1.0',
py_modules=['foo'],
)

然后它说运行这个命令:

python setup.py sdist

如何/什么/在哪里解析参数sdist

最佳答案

setup 函数解析命令行参数:它读取sys.argv。请参阅source code on GitHub

您肯定对函数参数(在 setup.py 脚本中定义的参数)和命令行参数(即 setup.py sdist)感到困惑。

run_setup函数注释中给出了一条信息:

'sys.argv[0]' will be replaced with 'script' for the duration of the call. 'script_args' is a list of strings; if supplied,

'sys.argv[1:]' will be replaced by 'script_args' for the duration of the call.

关于python distutils简单示例 - 如何解析参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46738350/

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