Skip to content

Latest commit

 

History

History
51 lines (27 loc) · 1.13 KB

File metadata and controls

51 lines (27 loc) · 1.13 KB

Sudoku-Game-Solution-using-Graph-Coloring

######################################################################################################

For Windows

Go to you python installation folder python > Scripts and run the following commands

  1. For installing pygame module python -m pip install pygame --user

  2. For installing requests module python -m pip install requests

  3. For installing bs4 module python -m pip install bs4

Run - goto the 'src' directory in the command prompt

type - python main.py

########################################################################################################

For Linux

  1. For installing pygame module

sudo apt update sudo apt install python3-pip sudo pip3 install pygame

  1. For installing requests module sudo apt-get install python3-requests

  2. 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.

#########################################################################################################