Resolve No Module Named PIP Error in Terminal on Mac - DevPops-Inc/python GitHub Wiki
• The following resolution is for if you receive no module named PIP error when running the pip --version
command.
•
• Type pip3 --version
and press the “return” key to sanity check that PIP3 is installed.
•
• If PIP3 is installed, then type ln -s /usr/local/bin/pip3 /usr/local/bin/pi
p and press the “return” key to create a symbolic link between PIP3 and PIP.
•
• If there already is a symbolic link between PIP3 and PIP, then type rm /usr/local/bin/pip
and press the “return” key to delete it.
•
• Press the up arrow key twice to recall ln -s /usr/local/bin/pip3 /usr/local/bin/pip
and press the “return” key to create a symbolic link between PIP3 and PIP.
•
• Type pip --version
and press the “return” key and it will give you the PIP version this time without the no module error.
•