https://github.com/bmwant/python-tictactoe
Tic Tac Toe game in Python
https://github.com/bmwant/python-tictactoe
game game-development python python-click python-game python-gui python3 tic-tac-toe tictactoe tictactoe-game
Last synced: 5 months ago
JSON representation
Tic Tac Toe game in Python
- Host: GitHub
- URL: https://github.com/bmwant/python-tictactoe
- Owner: bmwant
- Created: 2021-11-18T13:23:50.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2021-11-18T15:33:16.000Z (about 4 years ago)
- Last Synced: 2025-06-27T20:43:14.664Z (7 months ago)
- Topics: game, game-development, python, python-click, python-game, python-gui, python3, tic-tac-toe, tictactoe, tictactoe-game
- Language: Python
- Homepage: https://bmwlog.pp.ua/tictactoe-game-in-python/
- Size: 4.88 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Python Tic Tac Toe
This is the source code for [Python Tic Tac Toe](https://bmwlog.pp.ua/tictactoe-game-in-python/).
### Requirements
[Python 3.8](https://docs.python.org/3/whatsnew/3.8.html) or later.
### Run the game
Create virtual environment, install third-party packages and invoke as a module
```bash
$ pyenv virtualenv 3.8.1 tictactoe
$ pyenv activate tictactoe
$ pip install -r requirements.txt
$ python -m tictactoe
```