mirror of
https://github.com/Hmbown/DeepSeek-TUI.git
synced 2026-09-03 06:50:13 +08:00
46 lines
1.4 KiB
Batchfile
46 lines
1.4 KiB
Batchfile
@echo off
|
|
setlocal enabledelayedexpansion
|
|
:: CodeWhale Windows installer
|
|
:: Copies codewhale.exe, codew.exe, and codewhale.bat to %USERPROFILE%\bin (single binary, no codewhale-tui.exe)
|
|
|
|
set "BIN_DIR=%USERPROFILE%\bin"
|
|
set "SCRIPT_DIR=%~dp0"
|
|
|
|
if not exist "%BIN_DIR%" mkdir "%BIN_DIR%"
|
|
|
|
echo Installing codewhale to %BIN_DIR%...
|
|
|
|
copy /Y "%SCRIPT_DIR%codewhale.exe" "%BIN_DIR%\codewhale.exe" >nul
|
|
if %ERRORLEVEL% neq 0 (
|
|
echo ERROR: Failed to copy codewhale.exe
|
|
exit /b 1
|
|
)
|
|
|
|
copy /Y "%SCRIPT_DIR%codew.exe" "%BIN_DIR%\codew.exe" >nul
|
|
if %ERRORLEVEL% neq 0 (
|
|
echo ERROR: Failed to copy codew.exe
|
|
exit /b 1
|
|
)
|
|
|
|
copy /Y "%SCRIPT_DIR%codewhale.bat" "%BIN_DIR%\codewhale.bat" >nul
|
|
if %ERRORLEVEL% neq 0 (
|
|
echo ERROR: Failed to copy codewhale.bat
|
|
exit /b 1
|
|
)
|
|
|
|
echo.
|
|
echo Done. Commands installed to %BIN_DIR%.
|
|
echo.
|
|
echo Add %BIN_DIR% to your PATH:
|
|
echo 1. Open Start, search "environment variables"
|
|
echo 2. Click "Environment Variables..."
|
|
echo 3. Under "User variables", select "Path" and click "Edit"
|
|
echo 4. Click "New" and add: %BIN_DIR%
|
|
echo 5. Click OK, then restart your terminal
|
|
echo.
|
|
echo Or run this in an admin PowerShell:
|
|
echo [Environment]::SetEnvironmentVariable('Path', [Environment]::GetEnvironmentVariable('Path', 'User') + ';%BIN_DIR%', 'User')
|
|
echo.
|
|
echo Then run: codewhale
|
|
echo Double-click codewhale.bat (not codewhale.exe) to open Windows Terminal when it is installed.
|