Resolve No Module Named PIP Error in Terminal on Mac - VicPhanDevOps/mac GitHub Wiki

• The following resolution is for if you receive no module named PIP error when running the pip --version command.
image

• Type pip3 --version and press the “return” key to sanity check that PIP3 is installed.
image

• If PIP3 is installed, then type ln -s /usr/local/bin/pip3 /usr/local/bin/pip and press the “return” key to create a symbolic link between PIP3 and PIP.
image

• 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.
image

• 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.
image

• Type pip --version and press the “return” key and it will give you the PIP version this time without the no module error.
image