调用sdapi/v1/txt2img接口,报错“Couldn‘t load custom C++ ops”

后端启动stable_diffusion的api接口

nohup python launch.py  --use-cpu all --skip-torch-cuda-test    --api --api-log   --listen --server-name 192.168.1.204 > /home/third_party_app/llm/stable-diffusion-webui/logs/all.log 2>&1  &

服务接口

http://192.168.1.204:7860/docs

错误描述

Couldn't load custom C++ ops. This can happen if your PyTorch and torchvision versions are incompatible, or if you had errors while compiling torchvision from source. For further information on the compatible versions, check https://github.com/pytorch/vision#installation for the compatibility matrix. Please check your PyTorch version with torch.__version__ and your torchvision version with torchvision.__version__ and verify if they are compatible, and if not please reinstall torchvision so that it matches your PyTorch install.

解决方案

  1. 原因:

遇到“Couldn't load custom C++ ops”这样的错误,通常意味着 PyTorch 和 torchvision 之间的版本不兼容。

检查版本兼容性:

import torch

import torchvision

print("PyTorch version:", torch.__version__)

print("Torchvision version:", torchvision.__version__)

重新安装 torchvision

pip uninstall torchvision

pip install torchvision

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值