pip3 not working; "ModuleNotFoundError"
Trying to install anything with
pip3
returns the following error:
it looks like pip3 and python3 were installed with homebrew but I don't recall if this is the default. Running the system pip
(from ~/.local/bin
) encounters this issue as well. I belive it was installed with the system python from /usr/bin/python
.
How can I resolve this issue? Thanks!3 Replies
error: externally-managed-environment
I would guess overriding that broke the paths
Does pip
without the 3 work? That should always be system pipbrew unlink python
should doI'll try both of those. My current fix was to delete the non-brew pip and use the get-pip.py script from the python docs to install it again. Thanks!