ppshelp
ppshelp

Reputation: 39

How do you download PIP?

So i'm trying to download pip but when i go to the website ( https://bootstrap.pypa.io/get-pip.py ) it just shows a script and does not download anything.

I'm a beginner

Upvotes: 3

Views: 7292

Answers (3)

terentius
terentius

Reputation: 21

For Windows

Right click on https://bootstrap.pypa.io/get-pip.py and save as..
go to where the file is and run it with python in the cmd.

python get-pip.py

Then you can check the version typing

pip --version

and you can verify the installation typing

pip help

If you get an error you can check here too

https://phoenixnap.com/kb/install-pip-windows

I hope it can help

Upvotes: 0

user14578681
user14578681

Reputation:

You can install pip using the Python Installer.

Upvotes: 1

USERNAME GOES HERE
USERNAME GOES HERE

Reputation: 772

Why not just:

wget https://bootstrap.pypa.io/get-pip.py && python3 get-pip.py

Upvotes: 2

Related Questions