You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+21Lines changed: 21 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -69,6 +69,27 @@ pip install .
69
69
pip install -e ".[dev]"
70
70
```
71
71
72
+
### Pre-built Binaries (Standalone)
73
+
74
+
For systems without Python or pip, download standalone executables from the [GitHub Actions artifacts](https://github.com/slauger/check_netscaler/actions/workflows/pyinstaller.yml):
75
+
76
+
-**Linux**: `check_netscaler-linux`
77
+
-**macOS**: `check_netscaler-macos`
78
+
-**Windows**: `check_netscaler-windows.exe`
79
+
80
+
These binaries are built with PyInstaller and include all dependencies. No Python installation required.
81
+
82
+
```bash
83
+
# Linux/macOS example
84
+
chmod +x check_netscaler-linux
85
+
./check_netscaler-linux --help
86
+
87
+
# Windows example
88
+
check_netscaler-windows.exe --help
89
+
```
90
+
91
+
Binaries are built automatically on every push and are available as workflow artifacts for 30 days.
0 commit comments