fix env bug

This commit is contained in:
YaoyaoChang
2026-01-21 21:36:49 -08:00
parent 1b6e8b56ea
commit ce90a49960
3 changed files with 7 additions and 6 deletions
+2 -2
View File
@@ -66,7 +66,7 @@
"print(\"✅ Cloned VibeVoice repository\")\n",
"\n",
"# Install project dependencies\n",
"!uv pip --quiet install --system -e /content/VibeVoice\n",
"!uv pip --quiet install --system -e /content/VibeVoice[tts]\n",
"!wget -q https://github.com/cloudflare/cloudflared/releases/latest/download/cloudflared-linux-amd64 -O cloudflared && chmod +x cloudflared\n",
"print(\"✅ Installed dependencies\")\n",
"\n",
@@ -91,7 +91,7 @@
"metadata": {},
"outputs": [],
"source": [
"from huggingface_hub import login\n",
"from huggingface_hub import login, snapshot_download\n",
"login()"
]
},