python shebangs 与 /usr/bin/env 而不是硬路径有什么区别?

发布于 2024-11-02 07:26:21 字数 149 浏览 5 评论 0原文

我以前用shebang

#!/usr/bin/env python

什么时候用比较好

#!/usr/bin/python

它们之间的具体区别是什么?

I used to use the shebang

#!/usr/bin/env python

When is it better to use

#!/usr/bin/python

What is the exact difference between them?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

許願樹丅啲祈禱 2024-11-09 07:26:21

#!/usr/bin/python 被硬编码为始终运行 /usr/bin/python,而 #!/usr/bin/env python > 将运行当前环境中默认的 python (它将考虑例如 $PATH,您可以检查将使用哪个 python 解释器 哪个 python)。

第二种方式(#!/usr/bin/env python)是首选,因为它不依赖于特定的安装。例如,它将适用于没有 /usr/bin/pythonvirtualenv 设置或系统,但只有 /usr/local/bin/python< /代码>。

#!/usr/bin/python is hardcoded to always run /usr/bin/python, while #!/usr/bin/env python will run whichever python would be default in your current environment (it will take in account for example $PATH, you can check which python interpreter will be used with which python).

The second way ( #!/usr/bin/env python ) is preferred , as it's not dependent on particular installation. It will work for example with virtualenv setups or systems where there is no /usr/bin/python, but only e.g. /usr/local/bin/python.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文