Answers for "pip install packages for a specific release"

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

upgrading a pip package while importing it

pip install [package_name] --upgrade
Posted by: Guest on September-17-2020

Code answers related to "pip install packages for a specific release"

Python Answers by Framework

Browse Popular Code Answers by Language