Answers for "pip install some version"

2

pip install on different version of python

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

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

Python Answers by Framework

Browse Popular Code Answers by Language