(cls, path: str)
| 754 | |
| 755 | @classmethod |
| 756 | def find_conda_python(cls, path: str) -> List[PythonEnvironment]: |
| 757 | p = Path(path).expanduser().resolve() |
| 758 | if p.is_file() and os.access(p, os.X_OK): |
| 759 | return cls.detect_by_conda_bin(str(p)) |
| 760 | return [] |
| 761 | |
| 762 | |
| 763 | class VirtualEnvDetector(_EnvironmentDetector): |
no test coverage detected