gpt4 book ai didi

python - 在终端中运行 python 脚本

转载 作者:塔克拉玛干 更新时间:2023-11-03 02:07:45 25 4
gpt4 key购买 nike

我正在尝试在终端 hello.py python 脚本中运行:

#! usr/bin/env python3  
print("Hello", "World!")

在终端中调用以下命令(在 hello.py 所在的工作目录中):

$ chmod +x hello.py
$ ./hello.py

我得到:

bash: ./hello.py: usr/bin/env: bad interpreter: No such file or directory

我无法超越它。我在终端检查了以下内容(可能需要进一步说明):

_____________________________________________________________________
$ python3
Python 3.4.2 (default, Oct 8 2014, 10:45:20)
[GCC 4.9.1] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import sys
>>> print(sys.executable)
/usr/bin/python3
_____________________________________________________________________
$ echo $PATH
/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games
_____________________________________________________________________
$ which python3
/usr/bin/python3
_____________________________________________________________________

感谢任何澄清!

最佳答案

很简单,你忘了给绝对路径。

使用#!/usr/bin/env python3

关于python - 在终端中运行 python 脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35343384/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com