Answers for "how to install modules inside the python code"

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
1

install packages with pip from python

pip3 install <package_name>
Posted by: Guest on May-28-2020

Code answers related to "how to install modules inside the python code"

Python Answers by Framework

Browse Popular Code Answers by Language