mteiting / tictactoe

Simple TicTacToe playing AI written in python using Tensorflow

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Setup

Requirements

Setup

Windows

  1.  pip install -U pip virtualenv
    
  2.  virtualenv --system-site-packages -p python ./venv
    
  3.  .\venv\Scripts\activate
    
  4.  # Restore dependencies
     pip install -r src/requirements.txt
    
  5.  deactivate  # don't exit until you're done using TensorFlow
    

OSX/Ubuntu

  1.  virtualenv --system-site-packages -p python3 ./venv
    
  2.  source ./venv/bin/activate  # sh, bash, ksh, or zsh
    
  3.  pip install --upgrade pip
     pip list  # show packages installed within the virtual environment
    
  4.  # Restore dependencies
     pip install -r src/requirements.txt
    
  5.  deactivate  # don't exit until you're done using TensorFlow
    

Installing Tensorflow

https://www.tensorflow.org/install/pip

About

Simple TicTacToe playing AI written in python using Tensorflow


Languages

Language:Python 100.0%