A generic genetic algorithm package.
Follow the steps below to set up and run this project locally.
- Python 3.10 or higher installed on your machine.
gitinstalled (for cloning the repo).
- Clone the repository
git clone https://github.com/your-username/your-repo-name.git
cd your-repo-name- Create a virtual environment (recommended name:
.venv)
python3 -m venv .venv- Activate the virtual environment
- On Linux/macOS:
source .venv/bin/activate- On Windows:
.venv\Scripts\activate- Install dependencies
pip install -r requirements.txtYou can now run the app or start experimenting with the genetic algorithm engine.
python3 app.py- All external packages are tracked in
requirements.txt. - The virtual environment is excluded from version control via
.gitignore.