Is a simple turing machine simulator.
- Install tk
$ sudo apt-get install python3-tk graphviz
- Create virualenv
$ virtualenv venv -p python3
- Activate virutalenv
$ source venv/bin/activate
- Install requirement.txt
$ pip install -r requirement.txt
- Go to src
$ cd src
- run main.py
$ python main.py
- Build Docker Image
$ docker build . -t turingmasim:latest
- Set-up
$ xhost +local:docker
- Run TuringMaSim
$ docker run -e DISPLAY=$DISPLAY -v /tmp/.X11-unix:/tmp/.X11-unix turingmasim
WORK IN PROGRESS