Skip to content

Commit

Permalink
Hide --no-user option
Browse files Browse the repository at this point in the history
  • Loading branch information
pfmoore committed Mar 26, 2018
1 parent 17e0d11 commit 87bb4f9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/pip/_internal/commands/install.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
import operator
import os
import shutil
from optparse import SUPPRESS_HELP

from pip._internal import cmdoptions
from pip._internal.basecommand import RequirementCommand
Expand Down Expand Up @@ -87,7 +88,7 @@ def __init__(self, *args, **kw):
'--no-user',
dest='use_user_site',
action='store_false',
help="Do not install to the Python user install directory")
help=SUPPRESS_HELP)
cmd_opts.add_option(
'--root',
dest='root_path',
Expand Down

0 comments on commit 87bb4f9

Please sign in to comment.