gpt4 book ai didi

python - setup.py build 是做什么的?

转载 作者:太空宇宙 更新时间:2023-11-03 15:18:19 25 4
gpt4 key购买 nike

我在 Python documentation 中读到:

The build command is responsible for putting the files to install into a build directory.

我担心这份文件可能不完整。 python setup.py build 还做其他事情吗?我希望这一步生成带有 Python 字节码的目标文件,这些文件将在执行时由 Python VM 解释。

此外,我正在我的源代码存储库中构建自动代码检查。我想知道运行 setup.py build 是否有任何好处(它会做任何检查吗?)或者像 Pylint 这样的静态代码/PEP8 检查器是否足够好?

最佳答案

Does python setupy.py build do anything else?

如果您的包包含 C 扩展(或定义了一些自定义编译任务),它们也会被编译。如果您的包中只有 Python 文件,复制就是 build 所做的一切。

I expect this step to generate object files with Python bytecode, which will be interpreted at execution time by Python VM.

不,build 不会那样做。这发生在 install 阶段。

I want to know if there is any benefit of running setup.py build (Does it do any checks?) or is a static code/PEP8 checker such as Pylint good enough?

一定要运行 pylintbuild 甚至不检查语法。

关于python - setup.py build 是做什么的?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19029273/

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