(os_name)
| 44 | sys.exit(1) |
| 45 | |
| 46 | def check_os(os_name): |
| 47 | print("\nChecking System") |
| 48 | print("===============\n") |
| 49 | print(f" Operating System : {os_name}") |
| 50 | supported = {"macOS", "Linux"} |
| 51 | if os_name not in supported: |
| 52 | print("Unsupported operating system") |
| 53 | sys.exit(1) |
| 54 | |
| 55 | def download_dawn(os_name): |
| 56 | print("\nDownload Dawn Library") |