Answers for "sudo pip command not found in mac"

1

mac pip command not found

#Download get-pip.py provided by https://pip.pypa.io using the following command:
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py

#Run get-pip.py using the following command:
sudo python get-pip.py

#After you done installing, run this command to check if pip is installed.
pip --version

#Remove get-pip.py file after installing pip.
rm get-pip.py
Posted by: Guest on February-01-2022
5

pip command not found macos

sudo easy_install pip
Posted by: Guest on February-21-2020

Code answers related to "sudo pip command not found in mac"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language