@echo off rem ASCII only! cmd.exe reads .cmd in the system codepage, so any Cyrillic rem here turns into garbage and breaks the script. Russian text belongs in rem Python output, not in this file. rem rem chcp 65001 + PYTHONIOENCODING: without both, Russian log lines from Python rem come out as mojibake in the console. chcp 65001 >nul set PYTHONIOENCODING=utf-8 cls echo ======================================== echo hlamingo - where my stuff is echo ======================================== echo. cd /d "%~dp0" if not exist "venv\Scripts\python.exe" ( echo [ERROR] venv not found. Run setup.cmd first. pause exit /b 1 ) venv\Scripts\python.exe -m hlamingo.app echo. echo Server stopped. pause