We will not use any external third-party modules in this chapter. However, we will use several built-in Python modules.
To check whether all the required libraries are indeed provided by your Python distribution, type the following command in your Python command line:
>> import tkinter, copy, sys, configparser
This should be executed without an error message. If no errors are thrown back, you are ready to build the chess application. Let's get started!