File size: 320 Bytes
12818b2
 
 
 
 
 
1
2
3
4
5
6
@echo off
for /f "tokens=2 delims=:" %%i in ('ipconfig ^| findstr /R /C:"IPv4 Address"') do set ip=%%i
set ip=%ip:~1%
echo Lancement de Streamlit sur %ip%:8501
"C:/Program Files/Epic Games/UE_5.7/Engine/Binaries/ThirdParty/Python3/Win64/python.exe" -m streamlit run main.py --server.address %ip% --server.port 8501
pause