Menu
Newbedev LogoNEWBEDEV Python Javascript Linux Cheat sheet
Newbedev LogoNEWBEDEV
  • Python 1
  • Javascript
  • Linux
  • Cheat sheet
  • Contact

installing a specific version of pip code example

Example 1: 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

Example 2: 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

Tags:

Python Example

Related

Linux rsync command Help and Examples has key in json javascript code example Python how to check the digits of a number are even code example laravel api ignore csrf code example django syntax code example node sass 4 not compatible 6 code example fill container with image flutter code example material bottom tab navigation react native react navigation code example react Drawer.Navigator open code example how to add all the elements inside of an array code example javascript get element with class code example bootstrap html hamburger menu code example

Recent Posts

Pandas how to find column contains a certain value Recommended way to install multiple Python versions on Ubuntu 20.04 Build super fast web scraper with Python x100 than BeautifulSoup How to convert a SQL query result to a Pandas DataFrame in Python How to write a Pandas DataFrame to a .csv file in Python
© 2021 newbedevPrivacy Policy