Answers for "run python from bash"

5

How to run bash script in python

import subprocess
print "start"
subprocess.call("sleep.sh")
print "end"
Posted by: Guest on May-20-2020
3

how to execute bash commands in python script

import subprocess
subprocess.call(["sudo", "apt", "update"])
Posted by: Guest on November-17-2019
0

call python from bash shell

#!/bin/sh
python python_script.py
Posted by: Guest on May-25-2021

Python Answers by Framework

Browse Popular Code Answers by Language