Setup process

Creates a virtual environment (Scripts that ensure executed Python code uses the Python interpreter and site packages installed inside the given virtual environment.)

python -m venv venv

Activates vitual environment in your terminal (Error: Then try setting executionaly policy to unrestricted)

.\venv\Scripts\activate

Installs required dependencies/modules/libraries (In virtual environment)

python -m pip install -r requirements.txt

Runs the python code (AuthSys)

python run.py