-
Notifications
You must be signed in to change notification settings - Fork 66
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
Users should be guided to install Memacs as --user
#84
Comments
Do you mean |
No this should never be run. See https://stackoverflow.com/questions/21055859/what-are-the-risks-of-running-sudo-pip |
Thanks @taohansen, I thought that Now there is this "user scheme" method I was not aware of and I am a bit confused. Sorry for my lack of knowledge and thanks very much! |
I must admit I am not a Python programmer and only ever make use of |
A
pip install requirements.txt
runs into permission issues as a non-root user. Sincesudo pip
should never be invoked,pip install requirements.txt
should readpip install requirements.txt --user
.The text was updated successfully, but these errors were encountered: