mirror of
https://github.com/GH05TCREW/pentestagent.git
synced 2026-04-27 02:05:51 +00:00
Add nodejs check
This commit is contained in:
@@ -12,6 +12,15 @@ if errorlevel 1 (
|
||||
exit /b 1
|
||||
)
|
||||
|
||||
:: Check if Node.js is installed
|
||||
node --version >nul 2>&1
|
||||
if errorlevel 1 (
|
||||
echo Node.js is not installed, please install Node.js first
|
||||
echo Most MCP servers require Node.js to function properly
|
||||
pause
|
||||
exit /b 1
|
||||
)
|
||||
|
||||
:: Check and install dependencies from requirements.txt
|
||||
echo Installing dependencies from requirements.txt...
|
||||
pip install -r requirements.txt
|
||||
|
||||
Reference in New Issue
Block a user