Skip to content Skip to sidebar Skip to footer

Broken Pip3 And Easy_install3: DistributionNotFound

My pip3 seems to be broken: $ pip3 --version Traceback (most recent call last): File '/usr/bin/pip3', line 5, in from pkg_resources import load_entry_point F

Solution 1:

Probably the easiest way to get everything working again is to download get-pip.py, then run

sudo python3 get-pip.py

This will upgrade pip to the latest version (currently 6.1.1) and update setuptools as well.


Solution 2:

I had to download and run two scripts, get-pip.py and ez_setup.py

sudo python3 get-pip.py
sudo python3 ez_setup.py

Those fixed both pip3 and easy_install3.


Post a Comment for "Broken Pip3 And Easy_install3: DistributionNotFound"