-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.bat
More file actions
35 lines (31 loc) · 847 Bytes
/
setup.bat
File metadata and controls
35 lines (31 loc) · 847 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
@echo off
echo.
echo ============================================
echo Friday AI Assistant - Quick Setup
echo ============================================
echo.
REM Check if Python is installed
python --version >nul 2>&1
if errorlevel 1 (
echo ERROR: Python is not installed or not in PATH
echo Please install Python 3.8+ from https://python.org
pause
exit /b 1
)
echo Installing dependencies...
python -m pip install -r requirements.txt
echo.
echo Setting up directories and files...
python agent.py download-files
echo.
echo ============================================
echo Setup Complete!
echo ============================================
echo.
echo Next steps:
echo 1. Edit the .env file with your API keys
echo 2. Run: python agent.py dev
echo.
echo For detailed instructions, check README.md
echo.
pause