2024年9月14日
摘要: 1. 官网下载 openssl 安装包 https://slproweb.com/products/Win32OpenSSL.html 下载对应的 light 版本就行 2. 安装 安装默认配置安装,最后捐赠可以选择不勾选,有条件的建议捐赠。 3. 配置环境变量 在高级系统配置里找到环境变量配置,新 阅读全文
posted @ 2024-09-14 11:40 W1N9s 阅读(66) 评论(0) 推荐(0) 编辑
  2024年8月18日
摘要: 1. 下载插件 地址:https://github.com/crystian/ComfyUI-Crystools 方式一:git clone 方式二:下载 zip 文件,解压到 xxx\ComfyUI_windows_portable\ComfyUI\custom_nodes 文件夹下 2. 安装  阅读全文
posted @ 2024-08-18 13:53 W1N9s 阅读(60) 评论(0) 推荐(0) 编辑
  2024年8月10日
摘要: 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 阅读全文
posted @ 2024-08-10 23:03 W1N9s 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 1. 下载 webui 源码 地址:https://github.com/AUTOMATIC1111/stable-diffusion-webui clone 或者下载压缩包解压。 2. 启动 双击 stable-diffusion-webui-1.10.0\webui-user.bat 文件 会下 阅读全文
posted @ 2024-08-10 22:58 W1N9s 阅读(68) 评论(0) 推荐(0) 编辑
  2024年8月8日
摘要: 使用 nvm 时,默认的全局包安装路径 prefix 是当前激活的 Node.js 版本的安装路径 解决方法:统一安装路径 npm config set prefix "C:\Users\Administrator\AppData\Roaming\npm" 查看 npm 全局包安装路径 npm pr 阅读全文
posted @ 2024-08-08 12:15 W1N9s 阅读(38) 评论(0) 推荐(0) 编辑
  2024年8月7日
摘要: 1. 修改配置文件 // config.default.js config.session = { ... sameSite: "none", secure: true, }; config.cors = { origin: "xxx", credentials: true, allowMethod 阅读全文
posted @ 2024-08-07 00:12 W1N9s 阅读(4) 评论(0) 推荐(0) 编辑
  2022年5月30日
摘要: // android\app\build.gradle android { defaultConfig { ... missingDimensionStrategy "react-native-camera", "general" } } 阅读全文
posted @ 2022-05-30 16:46 W1N9s 阅读(38) 评论(0) 推荐(0) 编辑
  2022年5月18日
摘要: 打开 cmd,输入 npm config edit 打开 .npmrc 文件 文件顶部设置 registry=xxx 下增加一行:electron_mirror=https://cdn.npm.taobao.org/dist/electron/ ;;;; ; npm userconfig file 阅读全文
posted @ 2022-05-18 22:46 W1N9s 阅读(34) 评论(0) 推荐(0) 编辑
  2022年2月6日
摘要: HTMLElement.offsetTop 为只读属性,它返回当前元素相对于其 offsetParent 元素的顶部内边距的距离。 HTMLElement.offsetParent 是一个只读属性,返回一个指向最近的(指包含层级上的最近)包含该元素的定位元素或者最近的 table,td,th,bod 阅读全文
posted @ 2022-02-06 14:13 W1N9s 阅读(63) 评论(0) 推荐(0) 编辑
  2022年1月1日
摘要: 原因: socket.io-client 版本和服务器 socket.io 版本不匹配 socket.on('connect_error', e => { console.log('connect_error', e); }); 可输出看连接错误日志。 阅读全文
posted @ 2022-01-01 15:39 W1N9s 阅读(1678) 评论(0) 推荐(0) 编辑