+ 1
An example of Pypi?
Can anyone please throw some more light on this topic (pip) with an example.
2 odpowiedzi
+ 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.
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.