D | __init__.py | 38 return subprocess.run([sys.executable, "-c", code], check=True).returncode 59 def bootstrap(*, root=None, upgrade=False, user=False, argument 69 _bootstrap(root=root, upgrade=upgrade, user=user, 74 def _bootstrap(*, root=None, upgrade=False, user=False, argument 93 # pip, pipX, pipX.Y, easy_install, easy_install-X.Y 108 wheel_name = "{}-{}-{}-none-any.whl".format(project, version, py_tag) 119 args = ["install", "--no-cache-dir", "--no-index", "--find-links", tmpdir] 121 args += ["--root", root] 122 if upgrade: 123 args += ["--upgrade"] [all …]
|