An open API service indexing awesome lists of open source software.

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

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
```