Search This Blog

Showing posts with label install pip. Show all posts
Showing posts with label install pip. Show all posts

Tuesday, May 21, 2024

How to install pip on MAC

 A simple way to install pip on MAC is as below:

Step 1: Run curl as below to download pip:

curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py

Step 2: Then run the following command to install 

python3 get-pip.py

Step 3: Check installation 

pip -version 

or 

pip3 -version 

either one should print the version installed :)

Cheers,

Kapil

Popular Posts