mirror of
https://github.com/microsoft/OmniParser.git
synced 2025-02-18 03:18:33 +03:00
8 lines
257 B
PowerShell
8 lines
257 B
PowerShell
$scriptFolder = "\\host.lan\Data"
|
|
$pythonScriptFile = "$scriptFolder\server\main.py"
|
|
$pythonServerPort = 5000
|
|
|
|
# Start the flask computer use server
|
|
Write-Host "Running the server on port $pythonServerPort"
|
|
python $pythonScriptFile --port $pythonServerPort
|