diff --git a/README.md b/README.md
index 2f564f21de0cb1ccb609eec897393bc4f56a13ed..ebcdddb81576daf690bcf18c3cc33de41e20fe29 100644
--- a/README.md
+++ b/README.md
@@ -11,3 +11,16 @@ There is currently a bug in the Gensim module. To fix it, an older version of sc
 pip install scipy==1.12
 pip install gensim
 ```
+
+## Run Examples Locally
+
+`python3`
+
+```
+import gensim.downloader as api
+dataset = api.load('glove-wiki-gigaword-300')
+
+dataset.most_similar_cosmul(positive=["warm", "winter"], negative=["summer"])
+
+dataset.most_similar_cosmul(positive=["boat", "road"], negative=["sea"])
+```
\ No newline at end of file