Answers for "install python modules on windows"

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 "install python modules on windows"

Python Answers by Framework

Browse Popular Code Answers by Language