Answers for "how to add pip commands in python script"

-1

command to install pip in cmd

python -m pip install -U pip
Posted by: Guest on May-07-2020
0

how to pip install on command prompt

import subprocess
import sys
def install(package):
	subprocess.check_call([sys.executable,"-m","pip","install",package])
Posted by: Guest on December-22-2021

Code answers related to "how to add pip commands in python script"

Browse Popular Code Answers by Language