Answers for "how to get from python shell in cmd"

2

python run shell command

import subprocess
process = subprocess.Popen(['echo', 'More output'],
                     stdout=subprocess.PIPE, 
                     stderr=subprocess.PIPE)
stdout, stderr = process.communicate()
stdout, stderr
Posted by: Guest on March-07-2020
2

Run python program from cmd or terminal

pip3 install -r requirements.txt
python3 app.py
Posted by: Guest on April-18-2021

Code answers related to "how to get from python shell in cmd"

Python Answers by Framework

Browse Popular Code Answers by Language