(args: List[str])
| 60 | |
| 61 | |
| 62 | def run_pip(args: List[str]) -> bytes: |
| 63 | if is_frozen: |
| 64 | pip_executable = [_discover_system_pip()] |
| 65 | else: |
| 66 | pip_executable = [sys.executable, '-m', 'pip'] |
| 67 | |
| 68 | return _run_pip_subprocess(pip_executable, args) |
no test coverage detected