gpt4 book ai didi

python - 是否有一种标准方法来确保 python 脚本将由 python3 而不是 python2 解释?

转载 作者:太空宇宙 更新时间:2023-11-03 11:31:11 26 4
gpt4 key购买 nike

相关:Is there a standard way to make sure a python script will be interpreted by python2 and not python3?

显然,并非所有发行版都附带 python3 符号链接(symbolic link)。 #!/usr/bin/env python3 导致 no-such-file-or-directory 错误。如果我的脚本需要任何版本的 Python 3,我应该使用什么 shebang 行?

最佳答案

import sys
try:
assert sys.version_info[0] == 3
except:
print "ERROR NOT PYTHON 3!"
sys.exit()

关于python - 是否有一种标准方法来确保 python 脚本将由 python3 而不是 python2 解释?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19625768/

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