Answers for "how to install a module in python script"

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

installing modules in python

#Using the command prompt
#To check if moduale is already installed and version:
!conda list SomeModule #in your Jupyter notebook if using Anaconda.
conda list SomeModule #in the Anaconda prompt.

#To download and install modules and packages:
conda install SomeModule=0.22 #in the Anaconda prompt if using Anaconda
py -m pip install "SomeModule==1.4.2" #in command prompt if using pip
Posted by: Guest on August-26-2021

Code answers related to "how to install a module in python script"

Python Answers by Framework

Browse Popular Code Answers by Language