-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstall.bat
More file actions
executable file
·30 lines (30 loc) · 1.02 KB
/
Copy pathinstall.bat
File metadata and controls
executable file
·30 lines (30 loc) · 1.02 KB
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
@echo off
REM ============================================================
REM EchoQuill - one-time setup
REM Requires Python 3.10+ from https://www.python.org/downloads/
REM (check "Add python.exe to PATH" during Python install)
REM ============================================================
echo.
echo Installing EchoQuill...
echo.
python --version >nul 2>&1
if errorlevel 1 (
echo Python was not found. Please install Python 3.10 or newer from
echo https://www.python.org/downloads/ and check "Add python.exe to PATH".
pause
exit /b 1
)
python -m pip install --upgrade pip
python -m pip install -r "%~dp0requirements.txt"
if errorlevel 1 (
echo.
echo Something went wrong installing dependencies. See messages above.
pause
exit /b 1
)
echo.
echo ============================================================
echo Done! Double-click EchoQuill.bat to start dictating.
echo Default hotkey: Ctrl+Alt+Space (change it in Settings)
echo ============================================================
pause