gpt4 book ai didi

python - 在 setup.py 中安装另一个源发行版?

转载 作者:行者123 更新时间:2023-12-01 04:43:55 25 4
gpt4 key购买 nike

我有一个不依赖于 PyPi 的依赖项,但我将它放在源分发 tar 文件中。是否有办法让 setup.py 使用 tar 来安装依赖项?

这不起作用,因为在项目进入 sdist 后 dependency.tar.gz 不可用:

from setuptools.command.install import install

class MyInstall(install):
def run(self):
os.system('pip install -U dependency.tar.gz')


setup(
...
cmdclass={'install': MyInstall}
)

最佳答案

Setuptools 文档实际上涵盖了未在 PyPI 中注册的依赖项的安装。

http://pythonhosted.org/setuptools/setuptools.html#dependencies-that-aren-t-in-pypi

关于python - 在 setup.py 中安装另一个源发行版?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29913578/

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