mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-26 20:54:07 -08:00
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.
3 lines
246 B
Markdown
3 lines
246 B
Markdown
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) |