You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
717 B
22 lines
717 B
1 year ago
|
git clone https://github.com/comfyanonymous/ComfyUI
|
||
|
cd ComfyUI/custom_nodes
|
||
|
git clone https://github.com/ltdrdata/ComfyUI-Manager
|
||
|
cd ..
|
||
|
python -m venv venv
|
||
|
source venv/bin/activate
|
||
|
python -m pip install -r requirements.txt
|
||
|
python -m pip install -r custom_nodes/ComfyUI-Manager/requirements.txt
|
||
|
python -m pip install torchvision
|
||
|
cd ..
|
||
|
echo "#!/bin/bash" > run_gpu.sh
|
||
|
echo "cd ComfyUI" >> run_gpu.sh
|
||
|
echo "source venv/bin/activate" >> run_gpu.sh
|
||
|
echo "python main.py --preview-method auto" >> run_gpu.sh
|
||
|
chmod +x run_gpu.sh
|
||
|
|
||
|
echo "#!/bin/bash" > run_cpu.sh
|
||
|
echo "cd ComfyUI" >> run_cpu.sh
|
||
|
echo "source venv/bin/activate" >> run_cpu.sh
|
||
|
echo "python main.py --preview-method auto --cpu" >> run_cpu.sh
|
||
|
chmod +x run_cpu.sh
|