Answers for "how to install python package with version"

6

how to install python libraries

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

how to pip install a specific version

# At the time of writing this numpy is in version 1.19.x
# This statement below will install numpy version 1.18.1
python -m pip install numpy==1.18.1
Posted by: Guest on July-12-2020
0

how to install modules to a specific version of python

# install a package to a specific version of python
python<version> -m pip install <package_name>
Posted by: Guest on December-31-2021

Code answers related to "how to install python package with version"

Python Answers by Framework

Browse Popular Code Answers by Language