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",
+ " Run in Google Colab\n",
+ " | \n",
+ "