-
-
Save wouterdebie/b12d5a1160ef9de82cfb7be608f03bdf to your computer and use it in GitHub Desktop.
#!/bin/bash | |
set -e | |
brew install llvm libomp [email protected] | |
export CC=$(brew ls --verbose llvm | grep -e 'bin/clang$') | |
export CXX=$(brew ls --verbose llvm | grep -e 'bin/clang++$') | |
git clone https://github.com/comfyanonymous/ComfyUI.git | |
cd ComfyUI | |
python3.11 -m venv venv | |
. ./venv/bin/activate | |
pip install --upgrade pip | |
pip install --pre torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/nightly/cpu | |
python -m pip install --no-binary :all: numpy | |
python -m pip install "diffusers[torch]" | |
python -m pip install tensorflow tensorflow-metal | |
python -m pip install onnxruntime onnxruntime-silicon | |
python -m pip install jax-metal | |
python -m pip install mlx coremltools | |
pip install -r requirements.txt | |
pip install wheel | |
pip install xformers | |
cd custom_nodes | |
git clone https://github.com/ltdrdata/ComfyUI-Manager.git | |
cd .. | |
## Install some extras that are necessary for some nodes | |
pip install --upgrade onnx transformers optimum omegaconf | |
# for ComfyUI_VLM_nodes | |
pip install llama-cpp-python | |
# For prompt_generator nodes | |
pip install tf-keras | |
# Arm64 isn't recognized by an older version of py-cpuinfo | |
sed -i .orig 's/py-cpuinfo==.*/py-cpuinfo==9/' ComfyUI_VLM_nodes/requirements.txt | |
python main.py --force-fp16 --fp16-vae --highvram | |
Hi !
Thanks for sharing your recipe to install a formula one comfyUI.
Everything seems to work fine until i get this error at the end of the script :
sed: ComfyUI_VLM_nodes/requirements.txt: No such file or directory
Macbook air M3 / sonoma
Any idea ?
@laurentVeliscek this requires you to install ComfyUI_VLM_nodes. This was more of a mental note for me though.
That said, I recommend using https://github.com/Comfy-Org/comfy-cli for the installation (at least I switched to it, rather than my script). It provides a great installation experience and handy management tools.
it gets a bit finicky this script, after a few tweaks it is getting better, but lots of erroring out, even after adding ComfyUI_VLM_nodes before hand. I wonder, does the effort on Apple Silicon makes sense at all unless one converts existing models to apple ML? The standard comfyUI works, I am merely looking for performance enhancement on M1, with things like comfyui-reactor-node
on video, etc.
This stuff is obsolete. I've been using comfy-cli for a while now and it works great.
This stuff is obsolete. I've been using comfy-cli for a while now and it works great.
indeed - comfy-cli seems pretty solid, I think my py environment was hosed to begin with but after sorting that out I'm cruising, thanks!!
Your installation script for ComfyUI on macOS with Apple Silicon looks solid! Consider adding checks for Homebrew installation and error handling for package installations to improve user experience. Additionally, clarifying each step with comments or echo statements could help users understand the process better. Overall, great work on structuring the script! And I also would like to share some useful information with you. If you are looking for software online through which you can easily delete or paste long path files then LongPathTool will be the best option for you. I am also using it and it is worth it. I am sure you won't regret your decision.
Thanks to m3pr0 on reddit for some extra tips.