webui的运行实在名为venv
的虚拟环境中进行的,所以通过launch.py
运行的时候,一定要先通过source venv/bin/activate
激活虚拟环境venv
。
1、报错:Couldn’t install gfpgan
原因: 代理的问题,应该是安装的时候挂了代理,所以没办法直接安装。
解决: 感觉停用代理应该可以,但是我没试过。或者在launch.py
文件中加入https://ghproxy.com/
如下图:
2、NotImplementedError: No operator found for memory_efficient_attention_forward
with inputs:
原因: xformers
版本问题,0.0.18版本适用于pytorch2.0,webui现在默认的版本是1.13.1,所以不兼容。可以用python -m xformers.info
来查看xformers
的适配情况。
解决: 降低xformers
版本,pip install xformers==0.0.16