admin https://harduex.com/blog/run-larger-diffusion-models-with-low-vram-comfyui-guide/ 这一段脚本很有用 #!/bin/bash Custom script for activating the virtual environment and starting comfyui Create the virtual environment if it doesn't exist already if [ ! -d ".venv" ]; then python3 -m venv .venv source .venv/bin/activate pip install -r requirements.txt fi Activate the virtual environment and start comfyui source .venv/bin/activate python main.py --lowvram --listen=192.168.1.100