gpt4 book ai didi

python - 从 bash : Command not found error 运行 Python 脚本

转载 作者:可可西里 更新时间:2023-11-01 11:49:35 27 4
gpt4 key购买 nike

我获取命令未找到错误。 0 和 $filestem 是两个参数,我在脚本中有以下内容。当我执行脚本时,我得到命令未找到。

echo -e "Enter the file stem name"
read filestem
python gen_par_final.py 0 $filestem

输入文件、python 脚本和 bash 脚本都在同一个文件夹中。 python 脚本在命令提示符下工作,但不在脚本内部。是否有任何路径需要设置或可以解决问题?

最佳答案

这可以工作

  1. 插入此 #!/usr/bin/Pythongen_par_final.py 文件的顶部。
    (通常是/usr/bin/python,你要看看它是大写的P)

  2. 使 gen_par_final.py 可执行。
    $ chmod +x gen_par_final.py

  3. 编辑您的 shell 脚本。

    echo -e "Enter the file stem name"
    读取文件
    ./gen_par_final.py 0 $filestem

关于python - 从 bash : Command not found error 运行 Python 脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17157359/

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