gpt4 book ai didi

python - 在 Python 中安装本地附加功能

转载 作者:太空狗 更新时间:2023-10-30 00:15:26 24 4
gpt4 key购买 nike

我的包 X 的 setup.py 使用 setuptools 通过 extras_require 参数选择性地安装额外的包 Y。

现在包 Y 从 PyPi 中消失了,据我所知,从可见的 Internet 中消失了。 easy_install X[Y] 失败,出现错误:找不到适合 Y 的分发版

但是,我仍然有 Y 的 tarball 的本地副本。 Y 是纯 Python 包。

修改 setup.py 以允许此(本地?)可选额外项的最佳方法是什么?


编辑:修复是暂时的,直到我找到合适的替代品。我不想自己开始正式维护 Y :)

最佳答案

你可以继承setuptools.Command然后重载默认的 install 命令。然后你可以让 THAT 执行一个安装依赖项的子进程。这是一个 hack,但这正是您所要求的!

在 setup.py 中:

from setuptools import Command
class MyInstallCommand(Command):
# Overload the 'install' command to do default install but also install
# your provided tarball. Blah blah blah read the docs on what to do here.

setup(
name='mypackage',
# etc ... and then...
# Overload the 'install' command
cmdclass={
'install': MyInstallCommand,
}
)

我把它过度简化了,但这是基本要点。

关于python - 在 Python 中安装本地附加功能,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6500216/

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