From 3fde2c6eef7d4947d94025a56a03618d16987b4e Mon Sep 17 00:00:00 2001
From: Kenny <70860732+KennyOliver@users.noreply.github.com>
Date: Fri, 3 Jan 2025 15:25:58 +0000
Subject: [PATCH] Add: Installation instructions to `README.md`
#154
---
README.md | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 52 insertions(+)
diff --git a/README.md b/README.md
index 526932f..bb9bf97 100644
--- a/README.md
+++ b/README.md
@@ -70,12 +70,64 @@ FlavorLang blends coding with culinary creativity! Write programs like recipes &
### 1. Install the Compiler
+
+
+ Make it yourself
+
+
```bash
$ git clone https://github.com/KennyOliver/FlavorLang.git
$ cd src
$ make
```
+
+
+#### For macOS Users
+
+##### 1. Download & Extract the ZIP
+
+[FlavorLang Releases](https://github.com/KennyOliver/FlavorLang/releases)
+
+##### 2. Run the Install Script
+
+
+
+```bash
+./install.sh
+```
+
+##### 3. Handle macOS Security Prompt (If Any)
+
+- If macOS prompts a security warning, navigate to System Preferences > Security & Privacy > General.
+- Click "Open Anyway" for `flavor`.
+
+##### 4. Verify Installation
+
+```bash
+flavor --about
+```
+
+#### For Ubuntu Users
+
+##### 1. Download & Extract the ZIP
+
+[FlavorLang Releases](https://github.com/KennyOliver/FlavorLang/releases)
+
+##### 2. Run the Install Script
+
+
+
+```bash
+./install.sh
+```
+
+##### 3. Verify Installation
+
+```bash
+flavor --about
+```
+
### 2. Write Your First Recipe
```py