16 lines
430 B
Batchfile
16 lines
430 B
Batchfile
rem @echo off
|
|
setlocal
|
|
|
|
rem Set the path to your virtual environment
|
|
set VENV_PATH=.\venv314
|
|
rem Activate the virtual environment
|
|
call "%VENV_PATH%\Scripts\activate.bat"
|
|
rem pyenv-venv activate twitcharchive
|
|
|
|
pip install -r requirements.txt
|
|
|
|
rem Run the desired command in the virtual environment
|
|
python twitch-archive.py -u %1
|
|
|
|
rem Deactivate the virtual environment
|
|
call "%VENV_PATH%\Scripts\deactivate.bat"
|