Skip to content

Latest commit

 

History

History
41 lines (25 loc) · 1.48 KB

installation-instructions.md

File metadata and controls

41 lines (25 loc) · 1.48 KB
  1. Download & Install [Python 3.9.6], on your PC.

    Don't forget to add the interpreter to your system's Path. - select the check box on the installation Window

  1. Download Visual Studio 2019 [Community Edition], and in the installation window, select "Desktop tools for C++" & "Python development & debugging" options, [Required size would be around 8.2 GB]

  1. Check if python is installed successfully using [on cmd]:

    python --version


  1. Install virtual envoirnment package.

    pip install virtualenv

    To read more on this : https://www.geeksforgeeks.org/python-virtual-environment/


  1. Clone the git repository for the project using:

    git clone https://github.com/deepanshu-Raj/AI-Proctoring-Framework.git

    Or, download the project in the .zip format


  1. Go inside this project directory using cd command in "cmd". Once inside the folder, create a virtual envoirnment for your pc using :

    virtualenv <name_of_virtual_env>


  1. Now activate the virtual envoirnment, using command :

    source <name_of_virtual_env>/Scripts/activate

    once done, you'll see the name of your virtual envoirnment in parantheses in your cmd.


  1. For installing the dependencies for the project, use [on cmd] :

    pip install -r requirements.txt