Answers for "how to install pip in terminal"

7

how to install pip

curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
#Once you do that, enter line 3 inside
python get-pip.py
Posted by: Guest on October-21-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 install pip in terminal"

Python Answers by Framework

Browse Popular Code Answers by Language