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