Answers for "how to install specific versions of packages in python"

19

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
1

how to install modules to a specific version of python

# install a package to a specific version of python
python<version> -m pip install <package_name>
Posted by: Guest on December-31-2021

Code answers related to "how to install specific versions of packages in python"

Python Answers by Framework

Browse Popular Code Answers by Language