start qwen after installation

This commit is contained in:
DennisYu07 2026-03-11 04:01:22 -07:00
parent e65953de04
commit 8133c968ed
3 changed files with 20 additions and 14 deletions

View file

@ -134,18 +134,20 @@ call :CheckCommandExists qwen
if %ERRORLEVEL% EQU 0 (
echo SUCCESS: Qwen Code is available as 'qwen' command.
call qwen --version
echo.
echo INFO: Starting Qwen Code...
echo.
call qwen
) else (
echo WARNING: Qwen Code may not be in PATH. Please check your npm global bin directory.
echo.
echo ===========================================
echo SUCCESS: Installation completed!
echo The source information is stored in %USERPROFILE%\.qwen\source.json
echo.
echo ===========================================
)
echo.
echo ===========================================
echo SUCCESS: Installation completed!
echo The source information is stored in %USERPROFILE%\.qwen\source.json
echo Tips: Please restart your terminal and run: qwen
echo.
echo ===========================================
endlocal
exit /b 0