我应该放#! (shebang)在Python脚本中,它应该采用什么形式?

不羁的心 提交于 2020-08-10 16:51:04

问题:

Should I put the shebang in my Python scripts? 我应该把shebang放到我的Python脚本中吗? In what form? 以什么形式?

#!/usr/bin/env python 

or 要么

#!/usr/local/bin/python

Are these equally portable? 这些同样便携吗? Which form is used most? 最常用哪种形式?

Note: the tornado project uses the shebang. 注意: 龙卷风项目使用shebang。 On the other hand the Django project doesn't. 另一方面, Django项目没有。


解决方案:

参考一: https://stackoom.com/question/Sz7f/我应该放-shebang-在Python脚本中-它应该采用什么形式
参考二: https://oldbug.net/q/Sz7f/Should-I-put-shebang-in-Python-scripts-and-what-form-should-it-take
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!