An example of Pypi? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

An example of Pypi?

Can anyone please throw some more light on this topic (pip) with an example.

23rd Aug 2016, 3:32 PM
Surya Deep Mishra
Surya Deep Mishra - avatar
2 Answers
+ 3
pip is a package manager for Python like yum in Linux. We can install locally downloaded packages as well as package from internet using pip. It automatically downloads and install the package and dependencies of the package. It can install specific version of the package if specified at command line otherwise latest version will be installed.
25th Aug 2016, 1:35 PM
Shankar Sharma
Shankar Sharma - avatar
0
If you are useing windows 10. Then open the start. type in "powershell". Open Windows powershell. This is called the terminal by most programmers. "pip" is a command that installs packages for python directly from the internet. You can't use pip in python itself. For example if you want to install the "imutils" package, in the terminal you would type "pip install imutils" into the powershell/terminal.
23rd Aug 2016, 6:36 PM
Jc Scheepers