From 486f1582e299bd34b53de51f178ee59ee828ac6b Mon Sep 17 00:00:00 2001 From: Sitam Meur <103279526+sitammeur@users.noreply.github.com> Date: Sat, 7 Feb 2026 14:03:24 +0000 Subject: [PATCH 1/9] fix ollama installation error --- Gemma/[Gemma_1]Using_with_Ollama.ipynb | 1 + 1 file changed, 1 insertion(+) diff --git a/Gemma/[Gemma_1]Using_with_Ollama.ipynb b/Gemma/[Gemma_1]Using_with_Ollama.ipynb index 1d6af236..e37d5643 100644 --- a/Gemma/[Gemma_1]Using_with_Ollama.ipynb +++ b/Gemma/[Gemma_1]Using_with_Ollama.ipynb @@ -106,6 +106,7 @@ } ], "source": [ + "!sudo apt-get install zstd\n", "!curl -fsSL https://ollama.com/install.sh | sh" ] }, From b46a02ee6b15bf196709efeb9f13b0c9ca36374b Mon Sep 17 00:00:00 2001 From: Sitam Meur <103279526+sitammeur@users.noreply.github.com> Date: Sat, 7 Feb 2026 14:24:59 +0000 Subject: [PATCH 2/9] change according to gemini assist --- Gemma/[Gemma_1]Using_with_Ollama.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemma/[Gemma_1]Using_with_Ollama.ipynb b/Gemma/[Gemma_1]Using_with_Ollama.ipynb index e37d5643..a684bf7b 100644 --- a/Gemma/[Gemma_1]Using_with_Ollama.ipynb +++ b/Gemma/[Gemma_1]Using_with_Ollama.ipynb @@ -106,7 +106,7 @@ } ], "source": [ - "!sudo apt-get install zstd\n", + "!sudo apt-get update && sudo apt-get install -y zstd\n", "!curl -fsSL https://ollama.com/install.sh | sh" ] }, From a6ebd3722f6aae94ae4cbd5f06e157e623064063 Mon Sep 17 00:00:00 2001 From: Sitam Meur <103279526+sitammeur@users.noreply.github.com> Date: Sat, 7 Feb 2026 14:35:24 +0000 Subject: [PATCH 3/9] fix ollama problem with Gemma 2 notebook --- Gemma/[Gemma_2]Using_with_Ollama_Python.ipynb | 1 + 1 file changed, 1 insertion(+) diff --git a/Gemma/[Gemma_2]Using_with_Ollama_Python.ipynb b/Gemma/[Gemma_2]Using_with_Ollama_Python.ipynb index 21209905..022a0f34 100644 --- a/Gemma/[Gemma_2]Using_with_Ollama_Python.ipynb +++ b/Gemma/[Gemma_2]Using_with_Ollama_Python.ipynb @@ -95,6 +95,7 @@ }, "outputs": [], "source": [ + "!sudo apt-get update && sudo apt-get install -y zstd\n", "!curl -fsSL https://ollama.com/install.sh | sh" ] }, From 21937b73112773974f4eb788d7f4c669639a844b Mon Sep 17 00:00:00 2001 From: Sitam Meur <103279526+sitammeur@users.noreply.github.com> Date: Sat, 7 Feb 2026 14:46:13 +0000 Subject: [PATCH 4/9] fix username in notebook --- Gemma/[Gemma_2]Using_with_Ollama_Python.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemma/[Gemma_2]Using_with_Ollama_Python.ipynb b/Gemma/[Gemma_2]Using_with_Ollama_Python.ipynb index 022a0f34..f67f6a8d 100644 --- a/Gemma/[Gemma_2]Using_with_Ollama_Python.ipynb +++ b/Gemma/[Gemma_2]Using_with_Ollama_Python.ipynb @@ -41,7 +41,7 @@ "\n", "Author: Sitam Meur\n", "\n", - "* GitHub: [github.com/sitamgithub-MSIT](https://github.com/sitamgithub-MSIT/)\n", + "* GitHub: [github.com/sitammeur](https://github.com/sitammeur/)\n", "* X: [@sitammeur](https://x.com/sitammeur)\n", "\n", "Description: This notebook demonstrates how you can run inference on a Gemma model using [Ollama Python library](https://github.com/ollama/ollama-python). The Ollama Python library provides the easiest way to integrate Python 3.8+ projects with Ollama.\n", From fcc6025599b7a87666ce3f95a6dec06414d5b83d Mon Sep 17 00:00:00 2001 From: Sitam Meur <103279526+sitammeur@users.noreply.github.com> Date: Sat, 7 Feb 2026 18:06:03 +0000 Subject: [PATCH 5/9] fix ollama in gemma 3 notebook --- ...[Gemma_3]Using_with_Ollama_Python_Inference_with_Images.ipynb | 1 + 1 file changed, 1 insertion(+) diff --git a/Gemma/[Gemma_3]Using_with_Ollama_Python_Inference_with_Images.ipynb b/Gemma/[Gemma_3]Using_with_Ollama_Python_Inference_with_Images.ipynb index abadb8ef..898d288d 100644 --- a/Gemma/[Gemma_3]Using_with_Ollama_Python_Inference_with_Images.ipynb +++ b/Gemma/[Gemma_3]Using_with_Ollama_Python_Inference_with_Images.ipynb @@ -96,6 +96,7 @@ "outputs": [], "source": [ "!sudo apt-get install pciutils\n", + "!sudo apt-get update && sudo apt-get install -y zstd\n", "!curl -fsSL https://ollama.com/install.sh | sh" ] }, From 7a6a47d8555a38d68c4a06982f41113b20a93aa4 Mon Sep 17 00:00:00 2001 From: Sitam Meur <103279526+sitammeur@users.noreply.github.com> Date: Sun, 8 Feb 2026 06:50:08 +0000 Subject: [PATCH 6/9] add google colab link --- Gemma/[Gemma_3]Local_Agentic_RAG.ipynb | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Gemma/[Gemma_3]Local_Agentic_RAG.ipynb b/Gemma/[Gemma_3]Local_Agentic_RAG.ipynb index 363206d3..5c7ef768 100644 --- a/Gemma/[Gemma_3]Local_Agentic_RAG.ipynb +++ b/Gemma/[Gemma_3]Local_Agentic_RAG.ipynb @@ -44,6 +44,15 @@ "- GitHub: [lucifertrj](https://github.com/lucifertrj/)\n", "- Twitter: [TRJ_0751](https://x.com/trj_0751)\n", "\n", + "\n", + " \n", + "
\n", + " Run in Google Colab\n", + "
\n", + "\n", + "
\n", + "
\n", + "\n", "## Overview\n", "\n", "We will explore how to build a 100% local agentic RAG system using open-source stack. This system allows you to create a knowledge base from web data and answer user queries without relying on external APIs, ensuring data privacy and flexibility.\n", From 584881e76a4a4f8209d5fa2bd666a0e4d08ee27b Mon Sep 17 00:00:00 2001 From: Sitam Meur <103279526+sitammeur@users.noreply.github.com> Date: Sun, 8 Feb 2026 06:54:38 +0000 Subject: [PATCH 7/9] fix ollama installation in local rag notebook --- Gemma/[Gemma_3]Local_Agentic_RAG.ipynb | 1 + 1 file changed, 1 insertion(+) diff --git a/Gemma/[Gemma_3]Local_Agentic_RAG.ipynb b/Gemma/[Gemma_3]Local_Agentic_RAG.ipynb index 5c7ef768..3e0344bb 100644 --- a/Gemma/[Gemma_3]Local_Agentic_RAG.ipynb +++ b/Gemma/[Gemma_3]Local_Agentic_RAG.ipynb @@ -99,6 +99,7 @@ } ], "source": [ + "!sudo apt-get update && sudo apt-get install -y zstd\n", "!curl -fsSL https://ollama.com/install.sh | sh" ] }, From 2ec4a2bb641b7797fb52a814de2e74ae699fbe91 Mon Sep 17 00:00:00 2001 From: Sitam Meur <103279526+sitammeur@users.noreply.github.com> Date: Sun, 8 Feb 2026 07:02:58 +0000 Subject: [PATCH 8/9] fix ollama installation in elastic search notebook --- Gemma/[Gemma_2]Using_with_Elasticsearch_and_LangChain.ipynb | 1 + 1 file changed, 1 insertion(+) diff --git a/Gemma/[Gemma_2]Using_with_Elasticsearch_and_LangChain.ipynb b/Gemma/[Gemma_2]Using_with_Elasticsearch_and_LangChain.ipynb index c712400d..4d0069f9 100644 --- a/Gemma/[Gemma_2]Using_with_Elasticsearch_and_LangChain.ipynb +++ b/Gemma/[Gemma_2]Using_with_Elasticsearch_and_LangChain.ipynb @@ -336,6 +336,7 @@ } ], "source": [ + "!sudo apt-get update && sudo apt-get install -y zstd\n", "!curl -fsSL https://ollama.com/install.sh | sh" ] }, From 67ec4275941e93613765a8d7350759ea2938057c Mon Sep 17 00:00:00 2001 From: Sitam Meur <103279526+sitammeur@users.noreply.github.com> Date: Sun, 8 Feb 2026 07:04:18 +0000 Subject: [PATCH 9/9] fix ollama installation in genkit notebook --- Gemma/[Gemma_2]Using_with_Firebase_Genkit_and_Ollama.ipynb | 1 + 1 file changed, 1 insertion(+) diff --git a/Gemma/[Gemma_2]Using_with_Firebase_Genkit_and_Ollama.ipynb b/Gemma/[Gemma_2]Using_with_Firebase_Genkit_and_Ollama.ipynb index a4e098b6..7f23f189 100644 --- a/Gemma/[Gemma_2]Using_with_Firebase_Genkit_and_Ollama.ipynb +++ b/Gemma/[Gemma_2]Using_with_Firebase_Genkit_and_Ollama.ipynb @@ -311,6 +311,7 @@ "!pip install -q gradio\n", "\n", "# Install Ollama\n", + "!sudo apt-get update && sudo apt-get install -y zstd\n", "!curl -fsSL https://ollama.ai/install.sh | sh\n", "\n", "# Install Node.js\n",