pip in python | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

pip in python

What is it mean in python, Is it like software, something inside python or something else?

23rd Aug 2018, 6:54 PM
Tamer Softah
Tamer Softah - avatar
4 Answers
+ 3
Pip is a module that allowed you to download easier all Python modules (like PIL for the images).
23rd Aug 2018, 8:02 PM
Théophile
Théophile - avatar
+ 3
The pip command is a tool for installing and managing Python packages, such as those found in the Python Package Index. It's a replacement for easy_install.
24th Aug 2018, 3:43 AM
Maninder $ingh
Maninder $ingh - avatar
+ 1
pip is python package index used for installing third party packages from pypi using the command pip install package-name. we can install the required packages. into the python.
24th Aug 2018, 6:13 PM
Ashraf ali
Ashraf ali - avatar
0
You just execute the command, on Windows : pip install "module's name"
23rd Aug 2018, 8:03 PM
Théophile
Théophile - avatar