Answers for "pip install to specific version of python"

2

pip install on different version of python

py -<python_version> -m pip install <package_name>
Posted by: Guest on July-12-2021
16

pip install specific version

# To install a specific version of a package using pip:
pip install Package_name==version

# Example:
pip install MySQL_python==1.2.2
Posted by: Guest on March-16-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 "pip install to specific version of python"

Python Answers by Framework

Browse Popular Code Answers by Language