以下是可能的解决方法:
[title]6-基于Zho的Ultraedit工作流副本C:\Users\Admin\Desktop\ComfyUI-aki-v1.3\python\python.exe -m pip install -r requirements.txt上面的代码是这么理解的:找到自己comfyui的总文件夹,找到下面文件中的python文件夹(有些人的是python_emembeded)中的python.exe(可执行文件,右键属性复制路径,然后继续在我们的C:\Users\Admin\Desktop\ComfyUI-aki-v1.3\custom_nodes\ComfyUI-UltraEdit-ZHO>这个文件路径下cmd就可以进入终端)右键粘贴刚才的路径加\python.exe -m pip install -r requirements.txt以下是下载成功的日志(可以不看)C:\Users\Admin\Desktop\ComfyUI-aki-v1.3\custom_nodes\ComfyUI-UltraEdit-ZHO>C:\Users\Admin\Desktop\ComfyUI-aki-v1.3\python\python.exe -m pip install -r requirements.txtLooking in indexes:https://mirrors.cloud.tencent.com/pypi/simpleCollecting git+https://github.com/HaozheZhao/UltraEdit.git@main#subdirectory=diffusers(from -r requirements.txt(line 1))Cloning https://github.com/HaozheZhao/UltraEdit.git(to revision main)to c:\users\admin\appdata\local\temp\pip-req-build-3z1gwrcmRunning command git clone --filter=blob:none --quiet https://github.com/HaozheZhao/UltraEdit.git 'C:\Users\Admin\AppData\Local\Temp\pip-req-build-3z1gwrcm'
本部分内容基本都是因为网络问题,大部分安装问题可以通过使用国内镜像源来解决。例如:我们需要在执行安装requirements.txt文件时,我们可以尝试使用pip install -i https://mirrors.aliyun.com/pypi/simple/ -r D:/openai.wiki/stable-diffusion-webui/requirements.txt。这段代码可以理解为不使用官方下载地址,而是国内阿里云的镜像地址下载相关依赖组件。如果还是不能解决,请自行搜索CMD魔法上网,有一些魔法工具即便可以访问Youtube、Google等网站,也不代表它能够在CMD中是可以正常使用的,因为有一些魔法工具无法在CMD中被继承。[heading3]Stable-Diffusion-Stability-AI[content]脚本在执行git clone https://github.com/Stability-AI/stablediffusion.git命令时无法下载Stable-Diffusion-Stability-AI库。[heading3]PyPI错误[content]note:This error originates from a subprocess,and is likely not a problem with pip.error:metadata-generation-failedEncountered error while generating package metadata.See above for output.note:This is an issue with the package mentioned above,not pip.hint:See above for details.PyPI元数据包有问题,可以尝试执行pip cache purge清理缓存。
Consider using the `--user` option or check the permissions.在命令后面输入--user即可[heading2]5、如何为自定义节点创建conda虚拟环境:[heading3]创建Conda环境[content]conda create -n myenv python=3.10[heading3]激活Conda环境[content]conda activate myenv[heading3]安装依赖[content]conda install -r requirements.txt[heading2]6、如何为自定义节点创建venv虚拟环境:[heading3]创建虚拟环境[content]python -m venv myenv[heading3]激活虚拟环境(Windows)[content].\venv\Scripts\activate[heading3]激活虚拟环境(macOS/Linux)[content]source myenv/bin/activate[heading3]安装依赖[content]pip install -r requirements.txt[heading3]退出虚拟环境[content]deactivate[heading2]7、常用命令及说明:[content]pip install xxx:自动选择版本安装pip install xxx==x.x.x:安装指定版本,也可使用>=,<=等pip uninstall xxx:卸载pip show xxx