Part 0: GUI Setup

Initial setup for our GUI Sudoku Tutorial.

IMPORTANT: Please be sure to work through the machine setup before proceeding.
Need to cheat a bit? The complete script and board games can be found in new-coder/gui.

In your terminal, let’s navigate to your projects directory setup from earlier:

1
2
$ cd  # brings you to your 'Home' directory
$ cd new-coder/gui_workspace

Create an empty Python file called sudoku.py within the new gui directory:

1
$ touch sudoku.py

Then go ahead and open up sudoku.py in your text editor.

NOTE: In this tutorial, we will not be using any external packages; therefore, we DO NOT need to pip install any additional packages, or for that matter, create a brand new virtual environment.