“Führen Sie das Python -Skript vom Bash -Skript aus” Code-Antworten

Wie man das Bash -Skript in Python ausführt

import subprocess
print "start"
subprocess.call("sleep.sh")
print "end"
Cooperative Crab

Führen Sie das Python -Skript vom Bash -Skript aus

#!/bin/bash

# using the full path of the 'python3' command is not necessary but should used.
# you can get your full path of the python command by running `which python3`
/usr/bin/python3 python_script.py
Powerful Puma

Ähnliche Antworten wie “Führen Sie das Python -Skript vom Bash -Skript aus”

Fragen ähnlich wie “Führen Sie das Python -Skript vom Bash -Skript aus”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen