install_cpu.bat 475 B

12345678910111213
  1. @echo off
  2. cd /d %~dp0
  3. REM Check if the venv directory exists
  4. if not exist test_env\Scripts\python.exe (
  5. echo Creating VENV
  6. python -m venv test_env
  7. ) else (
  8. echo VENV already exists
  9. )
  10. echo Activating VENV
  11. start cmd /k "call test_env\Scripts\activate.bat && pip install --upgrade RealtimeSTT==0.1.28 && pip install --upgrade RealtimeTTS==0.1.28 && pip install pysoundfile==0.9.0.post1 openai==0.27.8 keyboard==0.13.5 PyQt5==5.15.9 sounddevice==0.4.6 wavio==0.0.7"