Tags
Asked 2 years ago
6 Aug 2021
Views 310
Harmony

Harmony posted

How do I install a specific version of package by PIP ?

How do I install a specific version of package by PIP ?
kord

kord
answered Aug 6 '21 00:00

pip install is used to install any package from pip, but if you want to install a specific version of the package then pass the package version number

pip install PackageName==version no.


for example

pip install conda==3.0


above command at the terminal will install conda , version of 3.0


pip install conda 

above command will install latest stable version of the conda
Post Answer