diff --git a/src/setup_venv.cmd b/src/setup_venv.cmd new file mode 100644 index 0000000..087af65 --- /dev/null +++ b/src/setup_venv.cmd @@ -0,0 +1,13 @@ +@echo off +REM Create Python virtual environment named "venv" +python -m venv venv + +REM Activate the virtual environment +call venv\Scripts\activate.bat + +REM Upgrade pip +python -m pip install --upgrade pip + +REM Install dependencies +pip install mutagen + diff --git a/src/setup_venv.ps1 b/src/setup_venv.ps1 new file mode 100644 index 0000000..97abb4c --- /dev/null +++ b/src/setup_venv.ps1 @@ -0,0 +1,12 @@ +# 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 +