在使用stable diffusion大模型时,添加一些模型后启动df页面报错:ModuleNotFoundError: No module named 'open_clip'
使用 pip install open_clip命令下载失败,报错:
Looking in indexes: https://mirrors.aliyun.com/pypi/simple
ERROR: Could not find a version that satisfies the requirement open_clip (from v ersions: none)
ERROR: No matching distribution found for open_clip
多方查找后,通过下载源码方法可以解决,操作步骤如下:
1、下载源码:git clone https://github.com/openai/CLIP.git
2、进入CLIP文件 (CLIP是git克隆下来的文件夹名) :cd CLIP
3、执行安装操作:python setup.py install (setup.py 为CLIP文件里的启动文件)
直到看到如下图表示安装完成: