Classic TicTacToe just in Executable format

First, pick either 'X' or 'O' from the screen then, play the normal one Player TicTacToe.
Playing on Terminal is kinda boring so, I made it into an executable file.
This commit is contained in:
Chander Jindal
2022-03-12 22:26:23 +05:30
committed by GitHub
parent fc9ea8eaf9
commit 40557ce86b
5 changed files with 348 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
Making of .exe file command
pip install pyinstaller // if you don't have it, also make sure the path you are using is correct
pyinstaller --onefile (I wanted it all to be in 1 file) -w (since i used pygames) app.py (name of my main python file)