Create the venv
get the Microsoft Visual Studio
python -m venv venv
If strugles of creating venv theen execute this code:
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser -Force
python -m venv venv
# or
C:\Users\vboxuser\AppData\Local\Programs\Python\Python311\python.exe -m venv venv
Now activate the venv
./venv/Script/activate
# or
.\venv\Scripts\activate
# or
./venv/Scripts/Activate.ps1
To install necessary libraries:
pip install -r requirements_s.txt
To run the program:
python voice_assistant_online.py