首页 AI系列17:私有部署本地文生图工具
文章
取消

AI系列17:私有部署本地文生图工具

依赖Python 3.10.6,(Newer version of Python does not support torch) checking “Add Python to PATH”.

注:torch是一个用于深度学习的开源库,全名是 PyTorch,由 Facebook 的人工智能研究团队开发

git clone https://github.com/AUTOMATIC1111/stable-diffusion-webui.git

先管理员权限打开cmd,并cd到脚本所在目录,然后Run webui-user.bat

RuntimeError: Torch is not able to use GPU; add –skip-torch-cuda-test to COMMANDLINE_ARGS variable to disable this check

解决:打开webui-user.bat文件。找到COMMANDLINE_ARGS变量的设置行,加上 set COMMANDLINE_ARGS=–skip-torch-cuda-test

运行成功后会在浏览器上打开 http://127.0.0.1:7860/

点generate时报RuntimeError: Found no NVIDIA driver on your system. Please check that you have an NVIDIA GPU and installed a driver

由于Stable Diffusion WebUI依赖于NVIDIA GPU进行加速,因此在没有NVIDIA GPU的系统上运行会出现这个错误。

解决:使用CPU进行推理:虽然速度会慢很多,但你可以修改配置文件以使用CPU而不是GPU。你可以在启动命令中添加–no-half

本文由作者按照 CC BY 4.0 进行授权