(command: str, msg: Optional[str] = None)
| 79 | |
| 80 | |
| 81 | def find_command(command: str, msg: Optional[str] = None) -> str: |
| 82 | return run_pipe("which", command, msg=msg).read().strip() |
| 83 | |
| 84 | |
| 85 | def check_version(current: str, required: Tuple[int, int, int], prog_name: Optional[str] = None) -> Tuple[ |