Answers for "command install python package"

8

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
6

how to install python libraries

python -m pip install SomePackage
Posted by: Guest on June-11-2020

Code answers related to "command install python package"

Python Answers by Framework

Browse Popular Code Answers by Language