diff --git a/README.md b/README.md index 1197a9a..b9a9ecb 100644 --- a/README.md +++ b/README.md @@ -61,7 +61,6 @@ Works for **Windows (WSL)**, **Linux**, & **macOS** ``` git clone https://github.com/ComfyWorkflows/comfyui-launcher cd comfyui-launcher/ -chmod +x run.sh ``` #### Start ComfyUI Launcher diff --git a/run.sh b/run.sh index 716c79b..b68113b 100755 --- a/run.sh +++ b/run.sh @@ -1,3 +1,5 @@ +#!/bin/bash + if [ ! -d "venv" ]; then echo "Creating virtual environment for ComfyUI Launcher...\n\n" python3 -m venv venv @@ -11,4 +13,4 @@ pip install -r requirements.txt echo "\n\n" echo "ComfyUI Launcher is starting...\n\n" -cd server/ && python server.py \ No newline at end of file +cd server/ && python server.py