This project is a visual representation of some pathfinding algorithms. The ones currently included are a bruteforce algorithm and an A* algorithm.
-
Clone the repository
git clone git@github.com:gdimitrovdev/Pathfinding.gitor
git clone https://github.com/gdimitrovdev/Pathfinding.git -
Create a virtual environment
python -m venv venv -
Activate the virtual environment
Windows:
.\venv\Scripts\activateLinux/Mac:
source ./venv/bin/activate -
Install the requirements
pip install -r requirements.txt
Follow the instructions on the UI.