Files
Folder-By-BPM/src/setup_venv.ps1

13 lines
231 B
PowerShell

# Create Python virtual environment named "venv"
python -m venv venv
# Activate the virtual environment
& .\venv\Scripts\Activate.ps1
# Upgrade pip
python -m pip install --upgrade pip
# Install dependencies
pip install mutagen