Answers for "python install module in python file"

5

python install module from script

import subprocess
import sys

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

install python package

pip3/pip2 install <package>
Posted by: Guest on December-09-2020

Code answers related to "python install module in python file"

Python Answers by Framework

Browse Popular Code Answers by Language