How to install pip - DeadBread76/Raid-Toolbox GitHub Wiki
Method 1: Installing pip automatically
If you where redirected here by the Errorfixer script, skip to method 2
To do so, you need python installed and added to your path. the open a CMD windows and type those lines
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
python get-pip.py
And boom, pip should be installed! if you get an error, just go to method two
Method 2: Installing pip manually
First, download this file to your desktop or your download folder Right click on this and select "save link as" then, go in cmd and type the following commands
If you downloaded it on your desktop:
cd "%userprofile%\desktop"
python get-pip.py
If you downloaded it to your download folder:
cd "%userprofile%\downloads"
python get-pip.py
And boom! pip is installed
Linux
To install pip on Linux, run the command sudo apt install python3-pip (Ubuntu And Debian) or the equivalent to your Linux distro.