Skip to content

sanket2000/proctoring

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Proctoring Setup

Steps to Run the Program

  1. Create and activate a virtual environment:

    • Linux/Mac:
      python3 -m venv venv && source venv/bin/activate
    • Windows:
      python -m venv venv && .\venv\Scripts\activate
  2. Install dependencies:

    pip install -r requirements.txt
  3. Navigate to the source directory:

    cd src
  4. Run the program:

    python run.py

To deactivate the virtual environment:

deactivate