运行不带“python”的 python 脚本关键词

发布于 2024-11-05 03:22:51 字数 153 浏览 0 评论 0原文

如何在 Mac 上的终端中运行 python 脚本而不使用“python”关键字,而无需编辑现有的 python 文件?

现在我必须这样做: python script.py

我喜欢做的是这样的: 脚本.py

How can I run a python script in Terminal on Mac without using the "python" keyword, without having to edit my existing python files?

Right now I have to do this:
python script.py

What I like to do is this:
script.py

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

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

发布评论

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

评论(3

那片花海 2024-11-12 03:22:56

添加一个 shebang:

#!/usr/bin/python

或者

#!/usr/bin/env python

我更喜欢第二个,因为 Python 可以位于 /usr/bin/python、/usr/local/bin/python 等任何地方,第二个确保您不必继续编辑 shebang。

然后,如果它是可执行的,您可以将其作为 ./script.py 执行。

Add a shebang:

#!/usr/bin/python

or

#!/usr/bin/env python

I prefer the second one, since Python can be anywhere like /usr/bin/python, /usr/local/bin/python etc. and second one ensure that you don't have to keep editing the shebang.

And then you can just execute it as ./script.py if it is executable.

╭⌒浅淡时光〆 2024-11-12 03:22:56

在你的 python 脚本中将其添加为你的第一行,

#!/usr/bin/python

然后在终端中执行此 chmod +x ./yourpythonscript.py

然后从终端执行为 ./yourpythonscript.py

in your python script add this as your first line

#!/usr/bin/python

then in terminal do this chmod +x ./yourpythonscript.py

then from terminal execute as ./yourpythonscript.py

薄情伤 2024-11-12 03:22:56

尝试 ./script.py 而不是 script.py ...或者确保当前目录位于您的路径中并且 script.py 应该可以工作...

Try ./script.py instead of script.py ... or ensure your current directory is in your path and script.py should work....

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