To avoid any conflicts with python packages from other projects, it is a good practice to create a virtual environment in which the packages will be installed. If you do not want to this you can skip the next commands and directly follow the How_to_execute file.
Create a virtual environment :
python -m venv venv
Enter the virtual environment:
Windows:
. .\venv\Scripts\activate
Linux or MacOS
source .\venv\Scripts\activate
Clone the repository :
git clone https://github.com/ssgali/MCQ_generation.git
Read the remaining instructions from the How_to_execute file.