Answers for "install specific version python"

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
1

how to install specific version of python with venv

#LAUNCH THE COMMAND WITH YOUR SPECIFIC DISTRIBUTION PATH INSTEAD OF THE ONTHEGO 'python'
#THEN CREATE YOUR ENV NORMAL
c:>pythonpython3.8 -m venv myEnv1 c:pathtomyenv
Posted by: Guest on July-23-2021
0

install package on specific version of python

py -3.7 -m pip install opencv-python
Posted by: Guest on October-06-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 "install specific version python"

Python Answers by Framework

Browse Popular Code Answers by Language