Skip to content
Snippets Groups Projects
start_server.bat 245 B
@echo off

set actbat=%userprofile%\miniforge-pyp3\Scripts\activate.bat
set pyscripts=%userprofile%\model_server

call %actbat%
call mamba activate model_server_env
cd %pyscripts%
call python -m model_server.scripts.run_server --port 6221

pause