Download Instructions

Follow these steps to set up the AI Player project

1. Install Python3

First, you'll need to install Python 3.x on your system:

  1. Visit Python Downloads
  2. Click "Download Python" (latest version)
  3. Run the installer
  4. Important: Check "Add Python to PATH" during installation

To verify the installation, open a terminal/command prompt and type:

python --version

2. Install PyQt6

Install PyQt6 using pip3 (Python3's package manager):

  1. Open a terminal/command prompt
  2. Run the following command:
pip3 install PyQt6

To verify the installation:

python3 -c "import PyQt6; print(PyQt6.__version__)"

3. Install Ollama

Install Ollama for local AI processing:

  1. Visit Ollama Downloads
  2. Download the appropriate version for your operating system
  3. Run the installer
  4. Follow the installation prompts

To verify the installation, open a terminal and type:

ollama --version

4. Download Project Files

Download the AI Player project files:

  1. Clone the repository or download the ZIP file
  2. Extract the files to your desired location
  3. Navigate to the project directory

Verify the project structure:

ls

You should see the following files:

  • TextPlayer (executable)
  • Games folder (containing .z5 files)
  • Other project files

Troubleshooting

Python Issues

  • If 'python' command not found, try using 'python3'
  • Make sure Python is added to your system PATH
  • Try running pip with: python -m pip install PyQt6

PyQt6 Issues

  • If installation fails, try updating pip first
  • On Windows, you might need Visual C++ Build Tools
  • Try installing with: pip install --upgrade PyQt6

Ollama Issues

  • Make sure you have sufficient disk space
  • Check if your system meets minimum requirements
  • Try running Ollama as administrator

Next Steps

Once you have completed the installation:

  1. Open a terminal in the project directory
  2. Run the TextPlayer executable
  3. Select a game from the Games folder
  4. Enjoy playing with AI assistance!