尝试使用bash在后台运行程序时出现Sudo错误

时间:2020-11-01 00:03:26

标签: python bash shell sudo nohup

我有一个Shell脚本,该脚本使sudo程序在后台运行,然后在该程序仍在运行时关闭窗口。我在运行时遇到任何错误:

这是我在shell中运行的内容:

#shell
source ./activate
pip3 install --user package
sudo -v
nohup sudo -S python3 program.py &

然后program.py执行以下操作:

import os
os.system("killall Terminal")
programstuff()

但是在nohup.out后面附加了一个错误:

sudo: a terminal is required to read the password; either use the -S option to read from standard input or configure an askpass helper

预先感谢

0 个答案:

没有答案
相关问题