From 086cd6aa6c77fe75280e11a95f53f12b1702071b Mon Sep 17 00:00:00 2001 From: jonathanagustin <5193877+jonathanagustin@users.noreply.github.com> Date: Sat, 30 Aug 2025 19:33:03 -0400 Subject: [PATCH] refactor(colab): remove cd and use absolute paths for idempotent runs - avoid stateful working-directory changes in notebook cells - use explicit /content/... paths for clone/install/inference - improves readability and re-run reliability --- demo/VibeVoice_colab.ipynb | 3 --- 1 file changed, 3 deletions(-) diff --git a/demo/VibeVoice_colab.ipynb b/demo/VibeVoice_colab.ipynb index 2e0c70d..bfd2f3c 100644 --- a/demo/VibeVoice_colab.ipynb +++ b/demo/VibeVoice_colab.ipynb @@ -63,9 +63,6 @@ "![ -d /content/VibeVoice ] || git clone --quiet --branch main --depth 1 https://github.com/microsoft/VibeVoice.git /content/VibeVoice\n", "print(\"✅ Cloned VibeVoice repository\")\n", "\n", - "# Go to repo directory\n", - "!cd /content/VibeVoice\n", - "\n", "# Install project dependencies\n", "!uv pip --quiet install --system -e /content/VibeVoice\n", "print(\"✅ Installed dependencies\")\n",