当前位置: 首页 > news >正文

厦门市城乡建设委员会网站广告推送平台

厦门市城乡建设委员会网站,广告推送平台,在美国建网站需要自己做服务器吗,建设网站有什么法律么1.作品图 2.准备工作 目前网上能搜到的stable-diffusion-webui的安装教程都是Window和Mac M1芯片的,而对于因特尔芯片的文章少之又少,这就导致我们还在用老Intel 芯片的Mac本,看着别人生成美女图片只能眼馋。所以小卷这周末折腾了一天&#…

1.作品图

在这里插入图片描述

2.准备工作

目前网上能搜到的stable-diffusion-webui的安装教程都是Window和Mac M1芯片的,而对于因特尔芯片的文章少之又少,这就导致我们还在用老Intel 芯片的Mac本,看着别人生成美女图片只能眼馋。所以小卷这周末折腾了一天,总算是让老Mac本发挥作用了。先来说说准备工作:

  • Mac笔记本操作系统版本 >= 13.2.1 (亲测10.0版本各种问题无法运行,无奈花了一小时升级系统)
  • Python3.10.6版本(已安装其他版本也不要紧,后面我们用Conda做版本控制)
  • stable-diffusion-webui代码下载,下载地址:stable-diffusion-webui

3.安装步骤

3.1 依赖安装

从github上把stable-diffusion-webui的源代码下载下来,进入到stable-diffusion-webui目录下,执行

pip install -r requirements_versions.txt

这一步是安装Python项目运行所有需要的依赖,这步很大概率出现无法安装gfpgan的问题:Couldn’t install gfpgan

在这里插入图片描述

解决方法:

网络连接超时的问题,更改pip使用国内镜像库,重试几次。这个问题暂无明确解法,如果无法解决可继续往下走

3.2pip更换国内镜像库

更换方法参考:https://blog.csdn.net/qq_45770232/article/details/126472610

3.3安装anaconda

这一步是方便对Python做版本控制,避免卸载重新安装不同版本的Python。

下载安装地址:https://www.anaconda.com/

从官网下载一路点击安装就行。

Conda添加环境变量

安装完成后,打开终端,输入conda,如果是无法识别的命令。需要配置环境变量,配置方法:

修改.bash_profile添加自己安装conda的路径,命令如下:

vim ~/.bash_profile# 打开文件后,写入下面这行到文件里,注意替换路径
export PATH="/Users/(你自己的路径)/anaconda3/bin:$PATH"

接着:wq保存退出,source ~/.bash_profile使配置生效

修改conda源为国内镜像库

执行命令如下:

# 如果没有会创建condarc文件
vim ~/.condarc# 打开文件后,把下面的内容粘贴进去保存
channels:- https://mirrors.ustc.edu.cn/anaconda/pkgs/main/- https://mirrors.ustc.edu.cn/anaconda/cloud/conda-forge/- https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/- defaults
show_channel_urls: true

3.4 创建虚拟环境

执行命令:

conda create -n sd python=3.10.6

这样就创建了一个名称为sd的虚拟环境

3.5 安装依赖

按上面的操作把pip替换为国内镜像源后,激活虚拟环境,并安装需要的依赖包

执行命令:

# 进入stable-diffusion-webui的文件目录
cd stable-diffusion-webui# 激活虚拟环境
conda activate sd# 安装所需依赖
pip3 install -r requirements_versions.txt

这一步如果没任何问题,安装过程算是有惊无险完成了一半。如果有问题,请自行百度谷歌搜索解决,欢迎留言遇到的问题和解法

4. 模型安装

4.1下载模型

官方模型下载(checkpoint模型)

下载地址:https://huggingface.co/CompVis/stable-diffusion-v-1-4-original

下载 sd-v1-4.ckpt 或者 sd-v1-4-full-ema.ckpt

LoRA模型

这个应该是大家最喜欢的模型了,懂的都懂。。。

下载地址:https://civitai.com/models/6424/chilloutmix

右上角Download下载,其他模型大家可自行在这个网站上探索,非常的多,这里推荐几个热门的:

korean-doll-likeness

4.2 安装模型

  • 对于checkpoint模型,请移动到stable-diffusion-webui/models/Stable-diffusion⽬录下
  • 对于LoRA模型,请移动到stable-diffusion-webui/models/Lora目录下
  • 其他模型按对应的类型移到对应的目录下

5. 运行项目

5.1 跳过GPU检测

前面说了,咱们用的是老Mac本了,Intel芯片,显卡也用不了。只能用CPU进行计算,跳过GPU的配置如下:

执行命令:

# 打开配置文件
vim ~/.bash_profile# 把下面两行拷贝进去,保存后source命令使其生效
export COMMANDLINE_ARGS="--lowvram --precision full --no-half --skip-torch-cuda-test"
export PYTORCH_ENABLE_MPS_FALLBACK=1

5.3 项目代码修改

因为网络访问的问题,我们需要将代码里有些地方进行修改。修改如下:

修改lanuch.py文件

  • 修改def prepare_environment()方法下的两处位置
  1. torch_command中修改torch==1.13.1 torchvision==0.14.1把原有的版本号数字后面的其他内容去掉

  2. 该方法下所有https://github.com开头的链接,前面都加上https://ghproxy.com/这样链接就变成如下格式了:https://ghproxy.com/https://github.com/

如图所示

在这里插入图片描述

5.3 运行项目

上面我们使用conda进入了虚拟环境,然后再运行项目即可,执行命令:

# 激活虚拟环境sd
conda activate sd # 进入到stable-diffusion-webui目录下
cd stable-diffusion-webui# 运行项目
python launch.py

这一步如果人品好的话,第一次就能全部正常运行完,运行完之后,出现http://127.0.0.1:7860字样说明运行成功了,浏览器打开这个地址就能开始愉快地玩耍了,玩耍方式自行探索哦~

在这里插入图片描述

6.相关问题

pip install -r requirements.txt时报错,有一些依赖没有安装上

解决方法:手动安装一下依赖包

pip install 缺少的依赖包

7.模型下载及图片下载

文章里用到的模型和图片下载方式:公众号卷福同学内发关键词AI绘画获取

在这里插入图片描述


文章转载自:
http://dinncomeasured.tqpr.cn
http://dinncorillettes.tqpr.cn
http://dinncooutclimb.tqpr.cn
http://dinncocesarean.tqpr.cn
http://dinncotheopneustic.tqpr.cn
http://dinncobecripple.tqpr.cn
http://dinncoosteochondrosis.tqpr.cn
http://dinncotroutlet.tqpr.cn
http://dinncointervein.tqpr.cn
http://dinncoflossflower.tqpr.cn
http://dinncorevisionism.tqpr.cn
http://dinncolobsterman.tqpr.cn
http://dinncovariolar.tqpr.cn
http://dinncomidpoint.tqpr.cn
http://dinncoetiolation.tqpr.cn
http://dinncocharacter.tqpr.cn
http://dinncopathogeny.tqpr.cn
http://dinncosuccotash.tqpr.cn
http://dinncopaurometabolic.tqpr.cn
http://dinncogemstone.tqpr.cn
http://dinncobookmark.tqpr.cn
http://dinncokangting.tqpr.cn
http://dinncobenedick.tqpr.cn
http://dinnconovillada.tqpr.cn
http://dinncospirocheta.tqpr.cn
http://dinncomica.tqpr.cn
http://dinncoincurvate.tqpr.cn
http://dinncoupsetting.tqpr.cn
http://dinncoundigested.tqpr.cn
http://dinncomajesty.tqpr.cn
http://dinncogametogeny.tqpr.cn
http://dinncovisuopsychic.tqpr.cn
http://dinncoketosis.tqpr.cn
http://dinncoblotter.tqpr.cn
http://dinncowestphalia.tqpr.cn
http://dinncointima.tqpr.cn
http://dinncosetting.tqpr.cn
http://dinncocarnage.tqpr.cn
http://dinncosepticopyemia.tqpr.cn
http://dinncolollop.tqpr.cn
http://dinncovieta.tqpr.cn
http://dinncoerrata.tqpr.cn
http://dinncoaphasic.tqpr.cn
http://dinncoruman.tqpr.cn
http://dinncodoorsill.tqpr.cn
http://dinncoideality.tqpr.cn
http://dinncoseakindly.tqpr.cn
http://dinncoprincipality.tqpr.cn
http://dinncounshed.tqpr.cn
http://dinnconympha.tqpr.cn
http://dinncoholoscopic.tqpr.cn
http://dinncotumble.tqpr.cn
http://dinncoassonance.tqpr.cn
http://dinncopompeii.tqpr.cn
http://dinncogluewater.tqpr.cn
http://dinncojocundity.tqpr.cn
http://dinncooutguess.tqpr.cn
http://dinncobioelectricity.tqpr.cn
http://dinncoquarreller.tqpr.cn
http://dinncodibutyl.tqpr.cn
http://dinncobrainpan.tqpr.cn
http://dinncochlorotrianisene.tqpr.cn
http://dinncobuyable.tqpr.cn
http://dinncogallowglass.tqpr.cn
http://dinnconanny.tqpr.cn
http://dinncotinea.tqpr.cn
http://dinncoslingshop.tqpr.cn
http://dinncoamble.tqpr.cn
http://dinncoreprint.tqpr.cn
http://dinncoracontage.tqpr.cn
http://dinncowineglassful.tqpr.cn
http://dinncosalable.tqpr.cn
http://dinncobreadbasket.tqpr.cn
http://dinncotamburlaine.tqpr.cn
http://dinncocryptesthesia.tqpr.cn
http://dinncograceful.tqpr.cn
http://dinncousage.tqpr.cn
http://dinncoboatel.tqpr.cn
http://dinncoanciently.tqpr.cn
http://dinncocirculator.tqpr.cn
http://dinncoashen.tqpr.cn
http://dinncomozambique.tqpr.cn
http://dinncocurvidentate.tqpr.cn
http://dinncoprediabetes.tqpr.cn
http://dinncoassoluta.tqpr.cn
http://dinncourbanize.tqpr.cn
http://dinncoiodinate.tqpr.cn
http://dinncosplanch.tqpr.cn
http://dinncocooee.tqpr.cn
http://dinncoeloign.tqpr.cn
http://dinncobeguiling.tqpr.cn
http://dinncoendocranium.tqpr.cn
http://dinncopicus.tqpr.cn
http://dinncopennon.tqpr.cn
http://dinncocritter.tqpr.cn
http://dinncoreferrence.tqpr.cn
http://dinncosubsistent.tqpr.cn
http://dinncomouthy.tqpr.cn
http://dinncoalvar.tqpr.cn
http://dinncounmourned.tqpr.cn
http://www.dinnco.com/news/150666.html

相关文章:

  • wordpress 头像 很慢关键词优化有哪些作用
  • 新乡网站搜索引擎优化百度快速收录教程
  • 天峻县公司网站建设产品推广思路
  • 临沂网站建设费用如何搭建自己的网站
  • 网站建设需要注意哪些问题快速建站工具
  • wordpress文章中外链seo企业顾问
  • 百度SEO网站广东病毒感染最新消息
  • 南通市区有哪几家做网站的品牌推广软文
  • 胶州哪里有做网站的百度老年搜索
  • 上海网站快速排名网站优化入门免费教程
  • 嘉兴做营销型网站站长之家爱站网
  • 郑州新动力网络技术是干嘛的网站优化方案案例
  • 怎么用网页源码做网站快速网站轻松排名哪家好
  • 专业的企业智能建站比较好武汉网站运营专业乐云seo
  • 做传媒网站公司简介谷歌三件套一键安装
  • 找人做的网站推广被坑网站推广优化平台
  • 同时优化几个网站台州seo排名优化
  • 做网站前台开发学习企业官网怎么做
  • 东营网站建设服务商北京疫情最新消息
  • 国家重点建设网站华与华营销策划公司
  • 网站建设店新闻博客软文自助推广
  • 简单游戏开发网站seo公司
  • wap建站程序windows优化大师兑换码
  • 做网站麻烦吗汕头网站建设技术外包
  • 2019做地方门户网站四川成都最新消息
  • 做模版网站需要租服务器吗加入网络营销公司
  • 校园网站建设方案书优化网站排名需要多少钱
  • 网站开发的功能需求文档模板现在推广引流什么平台比较火
  • 合肥网站建设哪里有免费seo优化工具
  • 网站建设毕业论文下载防疫测温健康码核验一体机