Installation
Python can be downloaded here.
For further information on how to install Python on your operating system :
On OSx you can also install Python through HomeBrew
, which would also install pip along, to do so, you need to install HomeBrew and then run the following command : brew install python3
Install pip
pip is the standard package manager for Python. It allows you to install and manage additional packages that are not part of the Python standard library.
On Windows :
- Download get-pip.py
- Open your terminal (
powershell
,cmd
, ...) and navigate to the folder containingget-pip.py
- Run the following command :
python get-pip.py
- Pip is now installed
On Unix :
Debian / Ubuntu:
sudo apt install python3-pip
CentOS / Rhel:
sudo yum install epel-release
sudo yum install python-pip
Fedora:
sudo dnf install python3
Arch Linux:
sudo pacman -S python-pip
openSUSE:
sudo zypper install python3-pip
On macOS:
Download get-pip.py
and then run it
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
python get-pip.py
With Brew:
brew install python3
You can verify that
pip
was installed properly by running the following command in your terminal :pip -V
which should returns the version of the installedpip
program.