stable-diffusion-webui-master ./webui.sh 报错 安装tb-lightly失败

adminmycode2年前AI人工智能1866

最近研究 AI stable-diffusion webui  报错,记录一下

No matching distribution found for tb-nightly

Could not find a version that satisfies the requirement tb-nightly (from gfpgan)

说明,我们的pip源中没有对应的“tb-nightly”依赖包。

查看pip配置

 python -m pip config list

显示使用的是清华源:

global.index-url='https://pypi.tuna.tsinghua.edu.cn/simple'

更换为阿里源:

python -m pip config set global.index-url https://mirrors.aliyun.com/pypi/simple

再次查看pip配置 (recheck 是程序猿的必备动作)

 python -m pip config list
 # global.index-url='https://mirrors.aliyun.com/pypi/simple'

再次执行就好了 ./webui.sh


相关文章

源码分析 | MySQL 的 commit 是怎么 commit 的?

MySQL 的 commit 命令提交事务时,内部会进行两阶段(Prepare 和 Commit)提交,这篇文章基于 MySQL 8.0.33 对 MySQL 的两阶段提交进行源码...

git 提交代码

git init  git clone  url 将远程的拉下来 git pull origin mast...

欢迎光临omycode

很高兴与大家见面,这个blog 为大家分享一些编程方面的心得和最新的编程学习资讯...

在Mac上安装使用redis的教程 redis

redis官网: https://redis.ioredis中文网: https://www.redis.net.cn/安装brew install redis开启服务brew&n...

AI 人工智能应用

AI 人工智能应用

 随着人工智能的发展,给物联网的很多产品的发展都带来了很好的机会,虽然现在物联网仍处于起步阶段,但 AIoT 代表了物联网的下一波浪潮,其中人工智能用于将数据转化为见解和行动。 联...

Linux 下杀毒软件 clamav 0.104.2 离线安装及测试(CentOS7)

1.下载安装clamav 官网下载 clamav-0.104.2.linux.x86_64.rpm# 有网络可用如下命令下载wget https://www.clamav.net/...

发表评论    

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。