-
Notifications
You must be signed in to change notification settings - Fork 281
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Instructions broke my pip :-( #1032
Comments
The later versions of pip use a different main entry point, I assume you ended up installing a new pip in your user site, but because you still use the system launcher, the wrong entry point is being used. Update your PATH: use |
Kyles-MacBook-Pro-3:plover mulka$ python3 -m site |
I don't know what's the standard user site bin directory on macOS, using |
I think for me it was /Users/mulka/Library/Python/3.6/bin. I added that to my path, and it seems to work now. |
(to get that, I just just took the USER_BASE from the previous command and added /bin) |
I'm curious why you guys aren't using a virtual environment. |
Summary
I think the Mac development instructions broke my pip :-(
After I ran this:
pip3 install --user -r requirements.txt
pip3 stopped working:
Kyles-MacBook-Pro-3:plover mulka$ pip3
Traceback (most recent call last):
File "/Library/Frameworks/Python.framework/Versions/3.6/bin/pip3", line 7, in
from pip import main
ImportError: cannot import name 'main'
Reproducing
Plover Version
3fdda2c
System
macOS High Sierra 10.13.6
The text was updated successfully, but these errors were encountered: