Answers for "call python from bash shell"

2

how to execute bash commands in python script

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

call shell script from python

import subprocess
subprocess.call(["./shell.sh"])

# Make sure that "shell.sh" has "+x" permissions
Posted by: Guest on May-09-2020
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