1 Star 0 Fork 0

Tark/sd-webui-sdxl-styles-preset

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
install.py 843 Bytes
一键复制 编辑 原始数据 按行查看 历史
daxijiu 提交于 2023-08-07 17:54 . Update install.py
import os
import json
# 获取当前脚本所在目录的绝对路径
current_dir = os.path.dirname(os.path.abspath(__file__))
#如果是初次安装,创建installed文件作为标记,并修改采样器样式为下拉菜单,如果已经有installed文件则跳过。
if not os.path.exists(os.path.join(current_dir, 'installed')):
# with open(os.path.join(current_dir, 'installed'), 'w') as f1:
# f1.write('')
# 获取 config.json 文件的绝对路径
json_file_path = os.path.join(current_dir, '..', '..', 'config.json')
# 读取 config.json 文件
with open(json_file_path, 'r') as f2:
config = json.load(f2)
# 修改配置项
config['samplers_in_dropdown'] = True
# 写入修改后的配置
with open('config.json', 'w') as f2:
json.dump(config, f2, indent=4)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/tark_zeng/sd-webui-sdxl-styles-preset.git
git@gitee.com:tark_zeng/sd-webui-sdxl-styles-preset.git
tark_zeng
sd-webui-sdxl-styles-preset
sd-webui-sdxl-styles-preset
main

搜索帮助

0d507c66 1850385 C8b1a773 1850385