Answers for "pip update package to specific version"

13

pip upgrade package

pip install Django --upgrade
Posted by: Guest on April-03-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
4

pip upgrade package

pip install [package_name] --upgrade
Posted by: Guest on April-03-2021
0

stackoverflow: install old version of networkx

pip install matplotlib==2.2.3
pip install networkx==1.10
Posted by: Guest on July-14-2020

Code answers related to "pip update package to specific version"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language