(self, python_bin: str, python_env: Optional[Dict]=None)
| 1118 | return (False, str(se)) |
| 1119 | |
| 1120 | def _pip_exists(self, python_bin: str, python_env: Optional[Dict]=None) -> bool: |
| 1121 | return self._run_args([python_bin, "-c", "import pip; pip.__version__"], env=python_env)[0] |
| 1122 | |
| 1123 | def _satisfied_dependencies(self, python_bin: str) -> Generator[str, None, None]: |
| 1124 | if python_bin is None: |
no test coverage detected