在 Mac 系统中卸载 PyTorch 的步骤如下:
cd Documents/ComfyUI
,导航到 ComfyUI 目录。python3 -m venv venv
source venv/bin/activate
pip3 uninstall torch torchvision torchaudio
在终端输入brew install python3安装Python3。在终端中输入brew install git安装Git。Git是代码版本管理工具,安装Git后就可以使用git clone命令从远程仓库(如GitHub)下载项目到本地了。[heading2]下载ComfyUI[content]选择你想下载ComfyUI的文件夹,我用的是Documents,以此为例,在终端输入cd Documents导航到此目录下,然后在终端输入git clone https://github.com/comfyanonymous/ComfyUI,ComfyUI就会被下载到Documents文件夹。[heading2]安装PyTorch[content]ComfyUI指定PyTorch需要是nightly版本,所以这里要先卸载当前的PyTorch,再安装nightly版本。为了隔离不同项目的依赖关系,建议在虚拟环境中操作。1.以我的目录为例,在终端中输入cd Documents/ComfyUI,导航到ComfyUI目录。2.使用以下命令创建并激活Python虚拟环境:python3 -m venv venvsource venv/bin/activate1.卸载PyTorchpip3 uninstall torch torchvision torchaudio1.接着安装适配Mac M1的PyTorch nightly版本:pip3 install --pre torch torchvision torchaudio --index-url https://download.pytorch.org/whl/nightly/cpu