关于 cmdclass 参数的 pip3 和 `python3 setup.py install` 之间的区别

Difference between pip3 and `python3 setup.py install` regarding cmdclass argument(关于 cmdclass 参数的 pip3 和 `python3 setup.py install` 之间的区别)
本文介绍了关于 cmdclass 参数的 pip3 和 `python3 setup.py install` 之间的区别的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我尝试配置我的包,以便在安装过程中执行脚本.因此,我从 setuptools.command install 继承并创建了我的自定义类 ActionOnInstall 以在安装包时执行一些操作.此类通过 setuptools setup() 参数 cmdclass 调用,如 这里.

I tried to configure my package such that a script is executed on the installation process. Therefore, I inherited from setuptools.command install and created my custom class ActionOnInstall to do stuff when package is installed. This class is called via setuptools setup() argument cmdclass as described here.

这种 setup.py 文件的最小示例如下所示

A minimal example of such a setup.py file looks like

from setuptools import find_packages, setup
from setuptools.command.install import install


class ActionOnInstall(install):
    def run(self):
        print("Call install.run(self) works!")
        install.run(self)


setup(name='name',
      cmdclass={
      'install': ActionOnInstall})

通过执行构建包

pip3 install <path-to-dir-with-setup.py>

运行成功,但不执行 ActionOnInstall.run() 中指定的命令.通过

runs successfully but does not execute commands specified in ActionOnInstall.run(). More directly calling this setup.py by

python3 setup.py install 

执行 ActionOnInstall.run() 中指定的命令.

executes commands specified in ActionOnInstall.run().

然后,我发现自己在问:这两种安装包的方法的实际区别是什么.我知道,就像其他帖子告诉我们的那样,pip 让安装包的工作变得更轻松.但是没有解释这两种方法如何不同地处理 setup()cmdclass 参数.因此,我非常感谢你们的来信.

Then, I found myself asking: what is the actual difference of these both approaches to install a package. I know, like other posts tell us, pip makes life easier regarding package installation. But how these both approaches treat the cmdclass argument of setup() differently is not explained. Thus, I would highly appreciate to hear from you guys.

推荐答案

pip 调用你的 setup.py 但它重定向 stdout/stderr.测试 pip 下的 setup.py 写入固定位置的文件:

pip calls your setup.py but it redirects stdout/stderr. To test setup.py under pip write to a file in a fixed location:

class ActionOnInstall(install):
    def run(self):
        print("Call install.run(self) works!", file=open('/tmp/debug.log', 'w'))
        install.run(self)

pip install .

这篇关于关于 cmdclass 参数的 pip3 和 `python3 setup.py install` 之间的区别的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

How do I make a list of all members in a discord server using discord.py?(如何使用 discord.py 列出不和谐服务器中的所有成员?)
how to change discord.py bot activity(如何更改 discord.py 机器人活动)
Issues with getting VoiceChannel.members and Guild.members to return a full list(让 VoiceChannel.members 和 Guild.members 返回完整列表的问题)
Add button components to a message (discord.py)(将按钮组件添加到消息(discord.py))
on_message() and @bot.command issue(on_message() 和@bot.command 问题)
How to edit a message in discord.py(如何在 discord.py 中编辑消息)