How to install pip command on MacOSX
pip: command not found
You may end on above issue while trying to install python django module using pip command. Solution is very simple. Simply run following command in terminal. Change version number depending on your python version.
For Default Python Installation
sudo easy_install pip
For Default Python 2.7 Installation
sudo easy_install-2.7 pip
For Default Python 3.7 Installation
sudo easy_install-3.7 pip
OR
sudo easy_install-3.7 pip3
Recent Comments