Why is '#!/usr/bin/env python' supposedly more correct than just '#!/usr/bin/python'?

后端 未结 5 2090
悲哀的现实
悲哀的现实 2020-12-12 20:34

Anyone know this? I\'ve never been able to find an answer.

5条回答
  •  伪装坚强ぢ
    2020-12-12 20:50

    If you're prone to installing python in various and interesting places on your PATH (as in $PATH in typical Unix shells, %PATH on typical Windows ones), using /usr/bin/env will accomodate your whim (well, in Unix-like environments at least) while going directly to /usr/bin/python won't. But losing control of what version of Python your scripts run under is no unalloyed bargain... if you look at my code you're more likely to see it start with, e.g., #!/usr/local/bin/python2.5 rather than with an open and accepting #!/usr/bin/env python -- assuming the script is important I like to ensure it's run with the specific version I have tested and developed it with, NOT a semi-random one;-).

提交回复
热议问题