1. Install Python3
First, you'll need to install Python 3.x on your system:
- Visit Python Downloads
- Click "Download Python" (latest version)
- Run the installer
- 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):
- Open a terminal/command prompt
- 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:
- Visit Ollama Downloads
- Download the appropriate version for your operating system
- Run the installer
- 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:
- Clone the repository or download the ZIP file
- Extract the files to your desired location
- 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:
- Open a terminal in the project directory
- Run the TextPlayer executable
- Select a game from the Games folder
- Enjoy playing with AI assistance!