Pip install package | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Pip install package

Anyone here heard of pip in python. By the way, it’s used to install packages. But here’s the point, they said it’s included when you download python >= 2.7. I can’t find it though(I’m using python 3.6.1), should I delete the old python and download the latest version in order to get pip setup ??

2nd Dec 2017, 7:48 AM
monotom
monotom - avatar
4 Answers
+ 4
you can get pip without doing that, but yeah you can reinstall and make sure pip is checked in installation . keep in mind, it could be that you have it, but haven't set up environment variables in order for your OS to do that. that's also something that the installation can set up if checked.
2nd Dec 2017, 11:43 AM
Ahri Fox
Ahri Fox - avatar
+ 4
Try using a command: pip3 install ...
2nd Dec 2017, 2:19 PM
Kuba Siekierzyński
Kuba Siekierzyński - avatar
+ 2
It's indeed included with Python 2.7+ (more specifically, ">=2.7.9,>=3.4"), but as the `ensurepip` module. And no, you don't to reinstall your Python environment to install Pip on these versions of Python, just run the `python -m ensurepip` command and you're good to go (assuming you have the appropriate directories on your `PATH`). If you care about more "detailed" info about this you can go to the `ensurepip` module's documentation, or PEP 453 for the rationale on this (along PEP 477 if you're like me and still use Python 2.7).
3rd Dec 2017, 10:20 AM
Edgar Garrido
Edgar Garrido - avatar
0
Hi Kuba Siekierzyński, I’ve read some pages about pip3 install command and they all say it might leave your OS in inconsistent state since my python is set up by default so it might not be compatible with pip
2nd Dec 2017, 3:22 PM
monotom
monotom - avatar