mirror of
https://github.com/andrey271192/ssh-manage.git
synced 2026-09-20 11:55:37 +00:00
Major update: - Card-based session layout with colored group indicators - AI agent: Claude API, DeepSeek API, local keyword search - Collapsible command panel — more space for agent - macOS build script (build_mac.sh) - Updated README with Windows/macOS install instructions - Config persistence in pca_config.json Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
18 lines
354 B
Batchfile
18 lines
354 B
Batchfile
@echo off
|
|
echo === PCA SSH v2.0 — Install and Run ===
|
|
|
|
where python >nul 2>&1
|
|
if errorlevel 1 (
|
|
echo Python not found!
|
|
echo Download: https://python.org/downloads/
|
|
echo Check "Add Python to PATH" during install!
|
|
pause
|
|
exit /b 1
|
|
)
|
|
|
|
echo Installing dependencies...
|
|
pip install paramiko
|
|
|
|
echo Starting PCA SSH...
|
|
python ssh_manager.py
|