Skip to content

Instantly share code, notes, and snippets.

@ryanontheinside
ryanontheinside / model_download_reference.md
Created June 9, 2025 14:15
wget reference for comfyui models

Model Download Reference for Remote Servers

Quick reference for downloading models using wget on remote servers like RunPod.

General Tips

  • Use --content-dispostion to keep the source file's name
  • Use -O filename to specify output filename
  • Use -c to continue partial downloads
  • Use -q for quiet mode (less verbose output)
@ryanontheinside
ryanontheinside / comfyui_setup.sh
Last active July 4, 2025 14:33
Deploying ComfyUI on RunPod
#this script corresponds to this tutorial video: https://www.youtube.com/watch?v=5hCGDcfPy8Y
#You only need to run this script once. However, when you start a new runpod server, you will need to initialize conda in the shell.
#1. run the following command to intialize conda in the shell
#/workspace/miniconda3/bin/conda init bash
#2. run the following command to activate the conda environment
#conda activate comfyui
#3. run the following command to start comfyui
#python main.py --listen
#!/bin/bash