diff --git a/README.md b/README.md
index 2daabd9..a312117 100644
--- a/README.md
+++ b/README.md
@@ -2,9 +2,21 @@
# DuckDB ClickHouse SQL extension
-This DuckDB extension implements various macros using ClickHouse SQL syntax, making it easier to transition between the two database systems ⭐ designed for [Quackpipe](https://github.com/metrico/quackpipe)
+This DuckDB extension implements various macros using ClickHouse SQL syntax, making it easier
+to transition between the two database systems ⭐ designed for [Quackpipe](https://github.com/metrico/quackpipe)
+
+
+
+## Installation
+
+**chsql** is distributed as a [DuckDB Community Extension](https://github.com/duckdb/community-extensions) and can be installed using SQL:
-## Examples
+```sql
+INSTALL chsql FROM community;
+LOAD chsql;
+```
+
+## Usage Examples
```sql
-- Type conversion
SELECT toInt32(123456789) as int32;
@@ -66,6 +78,7 @@ Different tests can be created for DuckDB extensions. The primary way of testing
make test
```
+