Reputation: 39
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
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
Reputation: 772
Why not just:
wget https://bootstrap.pypa.io/get-pip.py && python3 get-pip.py
Upvotes: 2