Skip to content

Dumb Fish chess

Published: at 12:43 PM

Chess

A multi-platform chess application built with Flutter, with a separate basic Python implementation.

Project Structure

This repository contains two main components:

Flutter Application (/app)

This is the main application, designed to run on web, mobile, and desktop from a single codebase.

Running the App

  1. Navigate to the app directory:
    cd app
    
  2. Install dependencies:
    flutter pub get
    
  3. Run the application on your desired platform (e.g., Chrome):
    flutter run -d chrome
    

Python Implementation (/chess_basic_python)

A simple script to play chess in the terminal.

Running the Script

  1. Navigate to the chess_basic_python directory:
    cd chess_basic_python
    
  2. (Optional, but recommended) Create and activate a virtual environment.
  3. Install dependencies:
    pip install -r requirements.txt
    
  4. Run the script:
    python main.py
    

Download it today


Next Project
Overcast