From 8897b9e0f77d85dc02610784e4c357329dd04f4f Mon Sep 17 00:00:00 2001 From: "Dr.Lt.Data" Date: Tue, 13 Aug 2024 01:28:49 +0900 Subject: [PATCH] patch colab notebook. prevent downloading cloudflare installation package into gdrive --- notebooks/comfyui_colab_with_manager.ipynb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/notebooks/comfyui_colab_with_manager.ipynb b/notebooks/comfyui_colab_with_manager.ipynb index df7b9ecf..c51c134c 100644 --- a/notebooks/comfyui_colab_with_manager.ipynb +++ b/notebooks/comfyui_colab_with_manager.ipynb @@ -228,8 +228,8 @@ }, "outputs": [], "source": [ - "!wget https://github.com/cloudflare/cloudflared/releases/latest/download/cloudflared-linux-amd64.deb\n", - "!dpkg -i cloudflared-linux-amd64.deb\n", + "!wget -P ~ https://github.com/cloudflare/cloudflared/releases/latest/download/cloudflared-linux-amd64.deb\n", + "!dpkg -i ~/cloudflared-linux-amd64.deb\n", "\n", "import subprocess\n", "import threading\n", @@ -369,4 +369,4 @@ }, "nbformat": 4, "nbformat_minor": 0 -} \ No newline at end of file +}