当前位置:   article > 正文

在jupyter notebook中执行shell脚本命令,并实时打印输出_jupyter notebook 执行 sh 脚本

jupyter notebook 执行 sh 脚本
import subprocess # 用于执行 shell命令

def _run(command):
    """执行shell脚本命令,并实时打印输出"""
    process = subprocess.Popen(command, shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
    while True:
        output = process.stdout.readline().decode().strip()
        if output == '' and process.poll() is not None:
            break
        if output:
            print(output)
def run(config):
    instructs = ["python main.py"]
    for key,val in config.items():
        key = "--" + key
        instructs.append(key)
        instructs.append(str(val))
    cmd = " ".join(instructs)
    _run(cmd)
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/512809
推荐阅读
相关标签
  

闽ICP备14008679号