Open a Terminal
- Use a keyboard shortcut, typically
Ctrl + Alt + T
.
- Alternatively, you can search for “Terminal” in your system’s application menu and open it from there.
Install PIP
Run the following commands, to install using the apt package manager.
sudo apt-get update && sudo apt upgrade
sudo apt-get install python3-pip
Check if PIP is Installed
You can type the following command into the terminal and ensure the output lists a PIP version.
pip3 --version
Open a Terminal
- Use a keyboard shortcut, typically
Ctrl + Alt + T
.
- Alternatively, you can search for “Terminal” in your system’s application menu and open it from there.
Install PIP
Run the following commands, which will install Python using the pacman package manager.
Note: You should update your page list first and upgrade any available pages.
sudo pacman -Sy
sudo pacman -S python-pip
Check if PIP is Installed
You can type the following command into the terminal and ensure the output lists a PIP version.
pip --version
PIP should be installed by default when you install Python from the official installer.
Open a Command Prompt
- Press
Windows Key + R
to open the Run dialog box.
- Type “cmd” and then press Enter or click OK.
Check if PIP is Installed
You can type the following command into the cmd terminal and ensure the output lists a PIP version.
pip --version
Reinstall Python if needed
If your Python install didn’t come with PIP installed, you should try to reinstall Python from scratch. Checkout our blog on how to install Python on Windows.
PIP should be installed by default when you install Python via Homebrew.
Open a Terminal
- Open Finder.
- Choose Go from the menu bar ➙ Utilities.
- Scroll down to find Terminal and double-click it to open.
Check if PIP is Installed
You can type the following command into the terminal and ensure the output lists a PIP version.
pip3 --version
Reinstall Python if needed
If your Python install didn’t come with PIP installed, you should try to reinstall Python from scratch. Checkout our blog on how to install Python on MacOS.