Answers for "python shell install"

5

install python packages in python shell

import subprocess
import sys

def install(package):
    subprocess.check_call([sys.executable, "-m", "pip", "install", package])
Posted by: Guest on April-08-2020
1

command for python shell

write python and press enter in terminal. 

A Python Prompt comprising of three greater-than symbols >>> appears.
Posted by: Guest on October-07-2021

Code answers related to "python shell install"

Python Answers by Framework

Browse Popular Code Answers by Language