“Uruchom skrypt Python ze skryptu Bash” Kod odpowiedzi

Jak uruchomić skrypt bash w Python

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

Uruchom skrypt Python ze skryptu Bash

#!/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

Odpowiedzi podobne do “Uruchom skrypt Python ze skryptu Bash”

Pytania podobne do “Uruchom skrypt Python ze skryptu Bash”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu