在 Mac 上使用 shebang (#!) 运行 python 64
我使用Python 64位如下。
alias python64='arch -x86_64 /usr/bin/python2.6'
如何使用 shebang(#!) 运行 python 64 位模式?
??? #!/usr/bin/python2.6 ???
I use python 64bit as follows.
alias python64='arch -x86_64 /usr/bin/python2.6'
How can I run python 64bit mode with shebang(#!)?
??? #!/usr/bin/python2.6 ???
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 OS X 10.6
arch
中是/usr/bin/arch
,所以你的行是一般情况下,如果你不知道路径,你可以随时使用
shebang 中的 env
命令,如下所示此处,即保证位于/usr/bin
中。所以,也会起作用。
In OS X 10.6
arch
is/usr/bin/arch
, so your line isIn general, if you don't know the path you can always use the
env
command in the shebang as shown here, which is guaranteed to be in/usr/bin
. So,will also work.
我现在没有 Mac 可以测试,但通常在 *nix 中你可以使用以下命令找到可执行文件的路径:
I dont have a mac to test right now, but usually in *nix you can find the path to an executable using: