File size: 320 Bytes
19faf57 |
1 2 3 4 5 6 7 8 |
param()
Write-Host "Setting up demo Python virtual environment (does not run automatically)."
Write-Host "Run the following commands in PowerShell to create and install dependencies:"
Write-Host "python -m venv .venv"
Write-Host ".\.venv\Scripts\Activate.ps1"
Write-Host "pip install -r requirements-merged.txt"
|