• Home
  • Raw
  • Download

Lines Matching full:pip

22     ("pip", _PIP_VERSION, "py2.py3"),
28 # after pip has executed. Particulary, this avoids the case when pip holds onto
36 runpy.run_module("pip", run_name="__main__", alter_sys=True)
43 Returns a string specifying the bundled version of pip.
48 # We deliberately ignore all pip environment variables
49 # when invoking pip
54 # We also ignore the settings in the default pip configuration file
63 Bootstrap pip into the current Python installation (or the given root
78 Bootstrap pip into the current Python installation (or the given root
79 directory). Returns pip command status code.
90 # By default, installing pip and setuptools installs all of the
93 # pip, pipX, pipX.Y, easy_install, easy_install-X.Y
95 # pip 1.5+ allows ensurepip to request that some of those be left out
97 # omit pip, pipX and easy_install
100 # omit pip and easy_install
118 # Construct the arguments to be passed to the pip command
136 # Nothing to do if pip was never installed, or has been removed
138 import pip
142 # If the pip version doesn't match the bundled one, leave it alone
143 if pip.__version__ != _PIP_VERSION:
146 print(msg.format(pip.__version__, _PIP_VERSION), file=sys.stderr)
151 # Construct the arguments to be passed to the pip command
152 args = ["uninstall", "-y", "--disable-pip-version-check"]
165 version="pip {}".format(version()),
166 help="Show the version of pip that is bundled with this Python.",
180 help="Upgrade pip and dependencies, even if already installed.",
201 "--default-pip",
204 help=("Make a default pip install, installing the unqualified pip "