08 2024 档案
安装 ComfyUI-Crystools 插件
摘要:1. 下载插件 地址:https://github.com/crystian/ComfyUI-Crystools 方式一:git clone 方式二:下载 zip 文件,解压到 xxx\ComfyUI_windows_portable\ComfyUI\custom_nodes 文件夹下 2. 安装
阅读全文
pip 镜像源设置
摘要:1、设置源pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple 2、删除源pip config unset global.index-url 3、查看设置pip config list
阅读全文
stable-diffusion-webui-1.10.0 安装
摘要:1. 下载 webui 源码 地址:https://github.com/AUTOMATIC1111/stable-diffusion-webui clone 或者下载压缩包解压。 2. 启动 双击 stable-diffusion-webui-1.10.0\webui-user.bat 文件 会下
阅读全文
使用 nvm 后,npm 安装全局包问题
摘要:使用 nvm 时,默认的全局包安装路径 prefix 是当前激活的 Node.js 版本的安装路径 解决方法:统一安装路径 npm config set prefix "C:\Users\Administrator\AppData\Roaming\npm" 查看 npm 全局包安装路径 npm pr
阅读全文
eggjs 跨域配置
摘要:1. 修改配置文件 // config.default.js config.session = { ... sameSite: "none", secure: true, }; config.cors = { origin: "xxx", credentials: true, allowMethod
阅读全文