Answers for "python install specific library version"

8

how to update a module in python

pip install [package] --upgrade
Posted by: Guest on March-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

Code answers related to "python install specific library version"

Python Answers by Framework

Browse Popular Code Answers by Language