1
1
Fork 0
mirror of https://github.com/pypa/pip synced 2023-12-13 21:30:23 +01:00

Fixes #2483: pip install --user option un(der)documented

This commit is contained in:
Joseph Long 2015-03-05 13:39:14 -05:00
parent 4d5eff4781
commit 176d0c5fee

View file

@ -124,7 +124,10 @@ class InstallCommand(Command):
'--user',
dest='use_user_site',
action='store_true',
help='Install using the user scheme.')
help="Install to the Python user install directory for your "
"platform. Typically ~/.local/, or %APPDATA%\Python on "
"Windows. (See the Python documentation for site.USER_BASE "
"for full details.)")
cmd_opts.add_option(
'--egg',