环境配置步骤:
- conda创建一个python=3.10的环境,起个名叫
sdenv
, 使用命令conda create -n denv python=3.10
- 进入创建好的环境
- 在webui的路径下直接运行
python launch.py
会自动开始安装所需的包(可能需要梯子或者在系统配置中添加pip的国内源) - 顺利的话就直接启动webui服务,但是有可能遇到各种问题
可能遇到的问题:
1. TypeError: AsyncConnectionPool.__init__() got an unexpected keyword argument 'socket_options'
httpx
这个包的版本修改为0.24.1
2. No module named 'sgm'
在webui/repositories/generative-models/
目录下执行pip install -e .
命令
git clone https://github.com/Stability-AI/generative-models.git repositories/generative-models
cd repositories/generative-models
pip install -e .
3. size_mismatch
需要更新项目:
git reset --hard
git pull