gpt4 book ai didi

python - distribute/distutils 指定 Python 版本

转载 作者:太空狗 更新时间:2023-10-29 22:23:11 27 4
gpt4 key购买 nike

有点跟进 this ...:)

我的项目仅适用于 Python 3,我的问题基本上是我如何告诉 distutils/distribute/这个包仅适用于 Python 3 的人?

最佳答案

不确定是否有一些特殊设置,但在 setup.py 开头的这个可能会有所帮助:

import sys
if sys.version_info.major < 3:
print("I'm only for 3, please upgrade")
sys.exit(1)

关于python - distribute/distutils 指定 Python 版本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13385337/

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