Answers for "pip install package version"

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
1

update pip

sudo pip3 install --upgrade pip
Posted by: Guest on June-23-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
7

pip install package

pip uninstall <package_name>
Posted by: Guest on September-16-2020
1

where does pip install packages

/usr/local/lib/python2.7/dist-packages/
Posted by: Guest on September-24-2021
1

install packages with pip from python

pip3 install <package_name>
Posted by: Guest on May-28-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language