A simple Flask App implementing an expert system that uses forward / backward chaining.
This is an academic mini project.
Ensure that you have the following installed on your machine:
-
Open a terminal window.
-
Clone the repository using the following command:
git clone https://github.com/Mitchi-02/expert-system.git
-
Navigate to the project directory:
cd expert-system
-
Set Up Virtual Environment:
python -m venv venv
On macOS/Linux:
source venv/bin/activate
On windows:
venv\Scripts\activate
-
Install Dependencies
pip install -r requirements.txt
-
Run the App
python app.py
-
Deactivate the virtual environment when done:
deactivate