Sudoku-Game-Solution-using-Graph-Coloring
For Windows
Go to you python installation folder python > Scripts and run the following commands
For installing pygame module python -m pip install pygame --user
For installing requests module python -m pip install requests
For installing bs4 module python -m pip install bs4
Run - goto the 'src' directory in the command prompt
type - python main.py
########################################################################################################
For Linux
For installing pygame module sudo apt update sudo apt install python3-pip sudo pip3 install pygame
For installing requests module sudo apt-get install python3-requests
For installing bs4 module sudo apt-get install python3-bs4
RUN - goto 'src' directory and type python3 main.py
(Optional) after first step type pip3 install -r requirements.txt to install all the dependency at once.